@extends('layouts/contentNavbarLayout') @section('title', 'Send Notification') @section('page-style') @endsection @section('content')

Home / Send Notification

{!! Form::open(['url' => '/notifications', 'class' => 'p-4 progress-form', 'id' => 'progress-form', 'lang' => 'en']) !!}
Send Notification
{!! Form::label('title', 'Title', ['class' => 'form-label']) !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Notification title']) !!}
{!! Form::label('description', 'Description', ['class' => 'form-label']) !!}
{!! Form::button('Submit', ['type' => 'submit', 'class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @endsection