{{-- @lang('Import Shipment From Excel File') --}}
@if(session()->has('status')) @endif @if (session()->has('failures')) @endif
@include('includes.form_errors') {!! Form::open(['method'=>'post', 'action'=>'ManageShipmentsController@importShipment', 'files'=>true, 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}

@lang('Import Customer From Excel File')

{!! Form::label('file', __('Choose Excel File'), ['class'=>'btn btn-default btn-file']) !!} {!! Form::file('file',['class'=>'form-control', 'style'=>'display: none;','onchange'=>'$("#upload-file-name").html(files[0].name)']) !!} @lang('No file chosen')
{!! Form::submit(__('Import Shipment'), ['class'=>'btn btn-primary btn-block', 'name'=>'submit_button']) !!}
{!! Form::close() !!}