@extends('layouts.admin.app') @section('page-title') {{ __('send notification') }} @endSection @section('page-nav-title')

{{ __('Notification') }}

{{ __('Create new notification') }}

@endsection @section('content') @include('includes.dialog')

{{ __('Create Notification') }}

@csrf
has('Title')) is-invalid @endif class="form-control" name="Title" class="form-control"> @error('Title')
{{ $message }}
@enderror
@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