{!! Form::label('import', 'Upload Import File') !!}
{!! Form::file('import', ['class' => 'form-control', 'required']) !!}
@if ($errors->has('import'))
{{ $errors->first('import') }}
@endif
{!! Form::label('type', 'Import File Type') !!}
{!! Form::select('type', $type, old('type'), ['class' => 'chosen form-control']) !!}
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
{!! Form::submit('Upload', ['class' => 'btn btn-primary btn-flat form-control']) !!}