@extends('layouts.admin.app') @section('page-title') {{ __('send notification') }} @endSection @section('page-nav-title')
{{ __('Notification') }}
{{ __('Create new notification') }}
{{ __('Dashboard') }}
{{ __('Create Notification') }}
@endsection @section('content') @include('includes.dialog')
{{ __('Create Notification') }}
@csrf
{{ __('Title') }}
has('Title')) is-invalid @endif class="form-control" name="Title" class="form-control"> @error('Title')
{{ $message }}
@enderror
{{ __('Description') }}
has('Description')) is-invalid @endif rows="22" name="Description" class="form-control">
@error('Description')
{{ $message }}
@enderror
@foreach ($users as $user) @endforeach
{{ __('Select') }}
{{ __('Phone Number') }}
{{ $user->mobile }} - {{ $user->name }}
@error('id')
must select one at least
@enderror
@endsection @section('scripts') @endsection