{!! Form::label('deliver_date', 'Fecha de envio') !!} {!! Form::text('deliver_date', null, ['class' => 'form-control date deliver_date','id'=>'deliver_date','step' => 'any']) !!}
{!! Form::label('status', 'Estatus') !!} {!! Form::select('status', $status, !empty($shipment) ? $shipment->status : null, ['class' => 'form-control select_tow', ]) !!}
{!! Form::label('soporte', 'Soporte') !!} {!! Form::file('soporte', null, ['class' => 'form-control']) !!}
{!! Form::label('customers_id', 'Cliente') !!} {!! Form::select('customers_id',$customers ,!empty($shipment) ? $shipment->customers_id: null, ['class' => 'form-control select_tow customers_id', 'id'=>'customers_id', 'onchange' => "changeCustomer()"]) !!}