@extends('voyager::master') @section('css') @stop @section('page_header')

{{ __('voyager::generic.Send-notification') }}

@include('voyager::multilingual.language-selector') @stop @section('content') @section('content')
@if(Session::has('success'))
{{ Session::get('success') }}
@endif {!! Form::open(['route'=>'voyager.users.postnotification', 'class'=>'form-edit-add', 'files' => true, 'method' => 'post','encrypt'=>'multipart/form-data']) !!}
{{ $errors->first('image') }}
{!! Form::label('subject', 'عنوان الإشعار' , ['class'=>'control-label']) !!} {!! Form::text('subject', old('subject'), ['class'=>'form-control', 'placeholder'=> 'عنوان الإشعار' ]) !!} {{ $errors->first('subject') }}
{{ Form::hidden('user_id', $id ) }}
{!! Form::label('message', ' التفاصيل' , ['class'=>'control-label']) !!} {!! Form::textarea('message', old('message'), ['class'=>'form-control', 'placeholder'=>'التفاصيل']) !!} {{ $errors->first('message') }}
{!! Form::close() !!}
@stop