@extends('backends.layouts.master_layout') @section('title','Create Notices') @section('page_heading','Notices') @section('content')
@include('backends.includes.notification')
@method('post') @csrf

Add Notices

@if($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if($errors->has('heading'))
{{ $errors->first('heading') }}
@endif
@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif
@endsection