@extends('layouts.admin.layout') @section('content')

Create Bulletin

@include('partials.message')
@csrf {{-- Name --}}
{{ $errors->first('name') }}
{{-- Year --}}
{{ $errors->first('year') }}
{{-- Type --}}
{{ $errors->first('type') }}
{{-- Week (shown when type = week) --}}
{{ $errors->first('week') }}
{{-- Month (shown when type = month) --}} @php $months = [ '01' => 'January', '02' => 'February', '03' => 'March', '04' => 'April', '05' => 'May', '06' => 'June', '07' => 'July', '08' => 'August', '09' => 'September', '10' => 'October', '11' => 'November', '12' => 'December', ]; @endphp
{{ $errors->first('month') }}
{{-- Cover Image --}} {{-- ── Cover Image ──────────────────────────────────────────────────── --}}

Cover Image *

{{-- Image Picker Modal — starts hidden; JS adds 'flex' when opening --}} {{-- Upload modal (nested, z-60) --}} {{-- Bulletin File --}}
{{ $errors->first('path') }}
Cancel
@endsection @push('scripts') @endpush