{{ $pageTitle ?? __('messages.list') }}
{{ html()->form('POST', route('sendPushNotification'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->id('push_notification')->open() }} {{ html()->hidden('id') }}
{{ html()->label(trans('messages.type') . ' *', 'type')->class('form-control-label') }} {{-- --}}
{{ html()->label(trans('messages.title') . ' *', 'title')->class('form-control-label') }} {{ html()->text('title', old('title'))->id('title')->placeholder(trans('messages.title'))->class('form-control')->required() }}
{{ html()->label(trans('messages.type') . ' *', 'type')->class('form-control-label') }} {{ html()->select('type', ['alldata' => __('messages.all'), 'service' => __('messages.service')], old('type'))->id('type')->class('form-select select2js notification_type')->required() }}
{{ html()->label(__('messages.select_name', ['select' => __('messages.service')]) . ' *', 'name')->class('form-control-label')->attribute('data-placeholder', __('messages.select_name', ['select' => __('messages.tax')]))}}
{{ html()->label(trans('messages.description') . ' *', 'description')->class('form-control-label') }} {{ html()->textarea('description', null)->class('form-control textarea')->id('description')->rows(3)->required()->placeholder(__('messages.description')) }}
{{ html()->submit(trans('messages.save'))->class('btn btn-md btn-primary float-end') }} {{ html()->form()->close() }}