@extends('admin.layout.main') @section('title', 'Add Notification') @section('style') @endsection @section('content')

{{ isset($user) ? 'Edit Notifications' : 'Add Notifications' }}

Back
{!! Form::open(['route' => 'notifications.store', 'method' => 'POST']) !!}
{!! Form::label('title', 'Title') !!} {!! Form::text('title', null, ['class' => 'form-control', 'required']) !!}
{!! Form::label('user_ids', 'Users') !!}
{!! Form::label('content', 'Content') !!} {!! Form::textarea('content', null, ['class' => 'form-control', 'required']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection