@extends('common::layouts.master') @section('notification-aria-expanded') aria-expanded="true" @endsection @section('notification-show') show @endsection @section('send_custom_notification') active @endsection @section('notification_active') active @endsection @section('content')
{!! Form::open(['route' => 'custom-notification-send', 'method' => 'post', 'enctype' => 'multipart/form-data']) !!}
@if(session('error'))
{{session('error')}}
@endif @if(session('success'))
{{session('success')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('send_custom_notification') }}

{{ Form::close() }}
@endsection