{!! Form::open(array('url' => '/client/saveDocument', 'id' => 'uploadClientDocment', 'class' => 'm-form m-form--fit m-form--label-align-righ', 'autocomplete' => 'off', "enctype"=>"multipart/form-data")) !!}
{{ Form::select('type', [''=>'select type', 'Proof of Legal Existence' => 'Proof of Legal Existence', 'Proof of Address' => 'Proof of Address', 'Other' => 'Other'], 'Proof of Legal Existence', ['class'=>'form-control' , 'required' , 'id' => 'type']) }}
{{--
{{ Form::file('document', array('id'=>'customFile', 'accept'=>'image/x-png,image/png,image/jpeg,application/pdf' )) }} {!! $errors->first('document', ':message') !!}
--}}
{{ Form::file('document', array('value' => '', 'id'=>'customFile', 'data-imgetag' => 'select-document-one', 'class' => 'custom-file-input', 'accept'=>'image/x-png,image/png,image/jpeg,application/pdf')) }} {!! $errors->first('document', ':message') !!}
Supported File Type: pdf, jpeg, png
{{ Form::file('document2', array('value' => '', 'id'=>'customFile2', 'data-imgetag' => 'select-document-two', 'class' => 'custom-file-input', 'accept'=>'image/x-png,image/png,image/jpeg,application/pdf')) }} {!! $errors->first('document2', ':message') !!}
Supported File Type: pdf, jpeg, png
{{--
{{ Form::file('document2', array('id'=>'customFile2', 'accept'=>'image/x-png,image/png,image/jpeg,application/pdf')) }} {!! $errors->first('document2', ':message') !!}
Supported File Type: pdf, jpeg, png
--}} {{ Form::close() }}