{!! Form::model($order, ['method' => 'PUT', 'route' => ['admin.order.order.saveAdminNote', $order->id], 'files' => true, 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.update') }}
{!! Form::label('admin_note', trans('app.form.admin_note'), ['class' => 'with-help']) !!} {!! Form::textarea('admin_note', isset($order->admin_note) ? $order->admin_note : null, ['class' => 'form-control summernote-without-toolbar', 'rows' => '2', 'placeholder' => trans('app.placeholder.admin_note')]) !!}
{!! Form::submit(trans('app.form.update'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}