@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Notification') }}

@csrf
{{ __('Notification Type') }} ({{ __('Required') }})
@error('notification-type')

{{ $errors->first('notification-type') }}

@enderror
{{ __('Notification Action') }} ({{ __('Required') }})
@error('notification-action')

{{ $errors->first('notification-action') }}

@enderror
{{ __('Subject') }} ({{ __('Required') }})
@error('notification-subject')

{{ $errors->first('notification-subject') }}

@enderror
{{ __('Notification Message') }} ({{ __('Required') }})
@error('notification-message')

{{ $errors->first('notification-message') }}

@enderror
{{ __('Return') }}
@endsection @section('js') @endsection