{!! 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