{!! Form::label('date', __('models/pickups.fields.date').':', ['class' => 'form-label']) !!}
{!! Form::date('date', null, ['class' => 'form-control datepicker' . ($errors->has('date') ? ' is-invalid' : '')]) !!} @if ($errors->has('date')) {{ $errors->first('date') }} @endif
{!! Form::label('earliest_time', __('models/pickups.fields.earliest_time').':', ['class' => 'form-label']) !!}
{!! Form::time('earliest_time', null, ['class' => 'form-control timepicker' . ($errors->has('earliest_time') ? ' is-invalid' : '')]) !!} @if ($errors->has('earliest_time')) {{ $errors->first('earliest_time') }} @endif
{!! Form::label('latest_time', __('models/pickups.fields.latest_time').':', ['class' => 'form-label']) !!}
{!! Form::time('latest_time', null, ['class' => 'form-control timepicker' . ($errors->has('latest_time') ? ' is-invalid' : '')]) !!} @if ($errors->has('latest_time')) {{ $errors->first('latest_time') }} @endif

{!! Form::label('no_packages', __('models/pickups.fields.no_packages').':', ['class' => 'form-label']) !!} {!! Form::text('no_packages', null, ['class' => 'form-control' . ($errors->has('no_packages') ? ' is-invalid' : '')]) !!} @if ($errors->has('no_packages')) {{ $errors->first('no_packages') }} @endif
{!! Form::label('weight', __('models/pickups.fields.weight').':', ['class' => 'form-label']) !!} {!! Form::text('weight', null, ['class' => 'form-control' . ($errors->has('weight') ? ' is-invalid' : '')]) !!} @if ($errors->has('weight')) {{ $errors->first('weight') }} @endif
{!! Form::label('length', __('models/pickups.fields.length').':', ['class' => 'form-label']) !!} {!! Form::text('length', null, ['class' => 'form-control' . ($errors->has('length') ? ' is-invalid' : '')]) !!} @if ($errors->has('length')) {{ $errors->first('length') }} @endif
{!! Form::label('width', __('models/pickups.fields.width').':', ['class' => 'form-label']) !!} {!! Form::text('width', null, ['class' => 'form-control' . ($errors->has('width') ? ' is-invalid' : '')]) !!} @if ($errors->has('width')) {{ $errors->first('width') }} @endif
{!! Form::label('height', __('models/pickups.fields.height').':', ['class' => 'form-label']) !!} {!! Form::text('height', null, ['class' => 'form-control' . ($errors->has('height') ? ' is-invalid' : '')]) !!} @if ($errors->has('height')) {{ $errors->first('height') }} @endif

{!! Form::label('instructions', __('models/pickups.fields.instructions').':', ['class' => 'form-label']) !!} {!! Form::textarea('instructions', null, ['class' => 'form-control' . ($errors->has('instructions') ? ' is-invalid' : '')]) !!} @if ($errors->has('instructions')) {{ $errors->first('instructions') }} @endif


{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel