@if(isset($id)) {!! html()->modelForm($data, 'PATCH', route('ordersms.update', $id))->open() !!} @else {!! html()->form('POST', route('ordersms.store'))->open() !!} @endif {!! html()->hidden('type', $ordersType) !!}
{{ $pageTitle ?? __('message.list') }}
{!! html()->label(__('message.subject'))->for('subject')->class('form-control-label') !!} {!! html()->text('subject', old('subject', $data->subject ?? null))->placeholder(__('message.subject'))->class('form-control')->required() !!}
{!! html()->label(__('message.description'))->for('sms_description')->class('form-control-label') !!} {!! html()->textarea('sms_description', old('sms_description', $data->sms_description ?? null))->class('form-control tinymce-sms_description')->placeholder(__('message.description')) !!}

*Note : {{ __('message.this_message_in_[]_inside_value_can_not_changes') }}

{!! html()->button(__('message.save'))->type('submit')->class('btn btn-md btn-primary float-right') !!} {!! html()->form()->close() !!}
@section('bottom_script') @endsection