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

Edit 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