@if(session()->has('message'))
@endif
@if(session()->has('error'))
@endif
@if ($errors->has('datetime'))
@if(session('success'))
{{ trans('labels.Successlabel') }}
{{ session()->get('message') }}{{ trans('labels.WarningLabel') }}
{{ session()->get('error') }}{{ $errors->first('datetime') }}
@endif
{{ trans('labels.NotifcationSentMessage') }}
@endif
@if(in_array("Send", $push_notification))
{!! Form::open(array('url' =>'admin/marketing/push-notification', 'name'=>'addImageFrom', 'id'=>'addImageFrom', 'method'=>'post', 'class' => 'form-horizontal', 'enctype'=>'multipart/form-data')) !!}
{!! Form::close() !!}
@else
{!! Form::text('title', '', array('class'=>'form-control', 'id'=>'title')) !!}
{!! Form::textarea('body', '', array('class'=>'form-control', 'id'=>'body')) !!}
{!! Form::file('image', array('id'=>'image')) !!}
{{ trans('labels.Upload image with format (jpeg,png,jpg)') }}
Please contact with SuperAdmin
@endif