@extends('admin.layouts.app') @section('title') Notification Management - Create @endsection @section('mainContent') @if(Session::has('message'))
{!! Session::get('message') !!}
@endif

Add Notification

{!! Form::open([ 'route' => ['admin.notification.store'], 'id' => 'InwordCreateForm', 'files' => 'true' ]) !!} @include('admin.pages.notification.form')
{!! Form::close() !!}
@endsection