{!! Form::open(['url' => '/admin/delivery-men-vehicle']) !!}
{!! Form::label('Vehicle') !!}
{!! Form::select('vehicle_id', $vehicles, null, ['class' => 'form-control', 'placeholder' => 'Select Vehicle', 'id' => 'vehicle_id']) !!}
@if ($errors->has('vehicle_id'))
{!! $errors->first('vehicle_id') !!}@endif
{!! Form::label('Delivery Man') !!}
{!! Form::select('delivery_man_id', $deliveryMen, null, ['class' => 'form-control', 'placeholder' => 'Select Delivery Man', 'id' => 'delivery_man_id']) !!}
@if ($errors->has('delivery_man_id'))
{!! $errors->first('delivery_man_id') !!}@endif
{!! Form::label('Date') !!}
{!! Form::date('delivery_date', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
@if ($errors->has('delivery_date'))
{!! $errors->first('delivery_date') !!}@endif
{!! Form::label('Time') !!}
{!! Form::time('delivery_time', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
@if ($errors->has('delivery_time'))
{!! $errors->first('delivery_time') !!}@endif
{!! Form::label('Details') !!}
{!! Form::textarea('details', null, ['rows' => 6, 'class' => 'form-control', 'placeholder' => 'Details']) !!}
@if ($errors->has('details'))
{!! $errors->first('details') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}