{!! html()->form('POST', route('store.frontend.order.status.data', ['id' => isset($data) ? $data->id : null ]))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->open() !!}
{!! html()->hidden('type', 'order_status')->placeholder(__('message.order_status_section')) !!}
{!! html()->label(__('message.title'))->for('title')->class('form-control-label mb-1') !!}
{!! html()->text('title', isset($data) ? $data->title : null)->placeholder(__('message.title'))->class('form-control') !!}
{!! html()->button(__('message.save'))->class('btn btn-md btn-primary float-md-end')->id('saveButton') !!}
{!! html()->form()->close() !!}