{!! Form::model($order, ['method' => 'PUT', 'route' => ['admin.order.order.fulfill', $order->id], 'files' => true, 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.fulfill_order') }}
{!! Form::label('tracking_id', trans('app.form.order_tracking_id'), ['class' => 'with-help']) !!} {!! Form::text('tracking_id', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.order_tracking_id')]) !!}
@php $carrier_id = $order->carrier ? $order->carrier->id : ($order->shippingRate ? optional($order->shippingRate->carrier)->id : null); @endphp
{!! Form::label('carrier_id', trans('app.form.carrier') . '*', ['class' => 'with-help']) !!} {!! Form::select('carrier_id', $carriers, $carrier_id, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.carrier'), 'required']) !!}
{!! Form::checkbox('notify_customer', 1, null, ['class' => 'icheck', 'id' => 'notify_customer', 'checked']) !!} {!! Form::label('notify_customer', strtoupper(trans('app.notify_customer')), ['class' => 'indent5']) !!}

* {{ trans('app.form.required_fields') }}

{!! Form::submit(trans('app.form.update'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}