@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.postbulknotifications', 'class'=>'form-edit-add','enctype'=>'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::label('message', ' التفاصيل' , ['class'=>'control-label']) !!} {!! Form::textarea('message', old('message'), ['class'=>'form-control', 'placeholder'=>'التفاصيل']) !!} {{ $errors->first('message') }}
{!! Form::close() !!}
@stop