{!! Form::label(null, trans('Orders::admin/orders/forms/edit.labels.options.status_id')) !!}
{!! Form::select('status_id', $statuses, old('status_id') ? old('status_id') : $order->status_id, ['class' => 'form-control search-dropdown']) !!}
{!! Form::label(null, trans('Orders::admin/orders/forms/edit.labels.options.payed')) !!}
{!! Form::checkbox('payed', 1, (old('payed') ? true : ($order->payed ? true : false)), ['id' => 'payed']) !!} {!! Form::label('payed', ' ') !!}
{!! Form::label(null, trans('Orders::admin/orders/forms/edit.labels.options.country')) !!}
{!! Form::select('country', $countries->prepend(trans('global.choose'), 0), old('country') ? old('country') : $order->country_id, ['class' => 'form-control search-dropdown', 'data-orders-options-countries']) !!}
{!! Form::label(null, trans('Orders::admin/orders/forms/edit.labels.options.shipment')) !!}
{!! Form::select('shipment', $shipments->pluck('name', 'id')->prepend(trans('global.choose'), 0), old('shipment') ? old('shipment') : $order->shipment_id, ['class' => 'form-control search-dropdown', 'data-orders-options-shipments'], $shipments->map(function ($item, $key) { return ['data-id' => $item->id, 'data-personal_collection' => $item->personal_collection]; })->keyBy('data-id')->toArray()) !!}
{!! Form::label(null, trans('Orders::admin/orders/forms/edit.labels.options.payment')) !!}
{!! Form::select('payment', $payments->pluck('name', 'id')->prepend(trans('global.choose'), 0), old('payment') ? old('payment') : $order->payment_id, ['class' => 'form-control search-dropdown', 'data-orders-options-payments']) !!}
- {{ trans('Orders::admin/orders/forms/edit.tip') }}