@extends('layouts.dashboard_sidebar') @section('title', 'Upload Files') @section('main-content')
{!! Form::open(array('route' => 'file_upload_post', 'files' => true, 'id' => 'form-upload')) !!}
{!! Form::textarea('lab_message', Request::old('lab_message'), array('class' => 'form-control', 'id' => 'lab_message', 'placeholder' => '(Click here to type) Message: shade, patient name, tooth #, etc. if filenames include patient name, shade, and tooth #, this field is optional. Please use a dash or comma in between the notes for each patient/case file.')) !!}
{!! Form::file('file[]', array('multiple' => 'true', 'accept' => '.pts, .stl, .sla, .zip, .lab, .constructionInfo, .dcm, .dicom, application/octet-stream, application/zip, application/sla')) !!}
{!! $errors->first('file.0', '
:message
') !!}


{!! Form::button('Advance to Shipping Screen', array('class' => 'btn btn-success form-control', 'type' => 'submit')) !!}
{!! Form::close() !!}
@stop @section('extra-styles') {!! Html::style('assets/dropzone/downloads/css/dropzone.css')!!} @stop @section('extra-scripts') {!! Html::script('assets/dropzone-5.2.0/downloads/dropzone.min.js') !!} @stop