@extends('backend.layouts.app') @section('title') {{ __($module_title) }} @endsection @section('breadcrumbs') {{ __($module_title) }} @endsection @section('content')

{{ __($module_title) }} {{ __($module_action) }}

{{ __($module_title) }} Management

{{ html()->form('POST', route('backend.notifications.store'))->class('form')->open() }}
{{ html()->label('Title')->class('col-md-2 form-control-label')->for('title') }}
{{ html()->text('title') ->class('form-control') ->placeholder('Notification Title') ->required() }}
{{ html()->label('Description')->class('col-md-2 form-control-label')->for('description') }}
{{ html()->textarea('description') ->id('description') ->class('form-control') ->placeholder('Notification Description') ->required() }}
{{ html()->button($text = "Create Notification", $type = 'submit')->class('btn btn-success') }}
{{ html()->form()->close() }}
@endsection @push('after-scripts') @endpush