@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('title', trans("lang.notification_title"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('title', null, ['class' => 'form-control','placeholder'=> trans("lang.notification_title_placeholder")]) !!}
{{ trans("lang.notification_title_help") }}
{!! Form::label('notification_type_id', trans("lang.notification_notification_type_id"),['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('notification_type_id', $notificationType, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.notification_notification_type_id_help") }}
{!! Form::label('user_id', trans("lang.notification_user_id"),['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('user_id', $user, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.notification_user_id_help") }}
{!! Form::label('read', trans("lang.notification_read"),['class' => 'col-3 control-label text-right']) !!}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}