{{ $title.' '.__('lbl.orders_sales')}}
{{ Form::open(['url' => route('customerImport'), 'method'=>'POST', 'name' => 'customerImport', 'id' => 'customerImport', "enctype"=>"multipart/form-data"]) }}
{{ Form::close() }}
{{ Form::label( __('lbl.customers') ) }}
{{ Form::file('customer_csv', ["class"=>"form-control","id"=>"customer_csv","name"=>"customer_csv"]) }}
@if ($errors->has('customer_csv'))
{{ $errors->first('customer_csv') }}
@endif
{{ Form::button(' '. __('lbl.submit'), ['type' => 'submit', "value"=>__('lbl.submit'),'class' => 'clickbtncommon btn-sm btn btn-primary'] ) }}
{{ __('lbl.cancel') }}