@extends('admin.layouts.app') @section('title', isset($notice) ? 'Edit Notice' : 'Post Notice') @section('breadcrumb') / Notice Board / {{ isset($notice) ? 'Edit' : 'Post' }} @endsection @section('content')
Notice Details
@csrf @if(isset($notice)) @method('PUT') @endif
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('flash_end_date')
{{ $message }}
@enderror
Cancel
How Flash Works
  • All Users — Notice shown to everyone
  • Department — Only that dept's users
  • Role — Only users with that role
  • Specific User — One person only
  • Leave dates blank to flash always
  • Notice stops flashing after end date
@endsection @push('scripts') @endpush