{{ $pageTitle }}
{!! html()->form('POST', route('store.frontend.order.status.data', ['id' => $id ]))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->open() !!} {!! html()->hidden('type', 'order_status_section')->placeholder(__('message.order_status_section')) !!}
{!! html()->label(__('message.title'))->class('form-control-label') !!} {!! html()->text('title', isset($id) ? optional($data)->title : old('title'))->placeholder(__('message.title'))->class('form-control') !!}
{!! html()->label(__('message.description') . ' *')->for('description')->class('form-control-label')!!} {!! html()->textarea('description', old('description', isset($id) && isset($data) ? $data->description : null,))->class('form-control textarea')->placeholder(__('message.description')) !!}
{!! html()->label(__('message.order_status_section_image'))->for('order_status_section_image')->class('form-control-label') !!}
{!! html()->file('order_status_section_image')->class('custom-file-input')->accept('image/*')->attribute('data--target', 'order_status_section_image_preview') !!} {!! html()->label(__('message.choose_file', ['file' => __('message.image')]))->class('custom-file-label') !!}
@if( isset($id) && isset($data) && getMediaFileExit($data,'order_status_section')) order_status_section_image @if(env('APP_DEMO')) @else @endif @endif
{!! html()->form()->close() !!}