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

Edit Bulletin

@include('partials.message')
@csrf {{-- Name --}}
{{ $errors->first('name') }}
{{-- Year --}}
{{ $errors->first('year') }}
{{-- Type --}}
{{ $errors->first('type') }}
{{-- Week --}} @php $currentType = old('type', $bulletin->type); @endphp
{{ $errors->first('week') }}
{{-- 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 --}} @php $currentImagePath = old('cover_image_path', $bulletin->cover_image ? $bulletin->CoverImagePath : ''); @endphp {{-- ── Cover Image ──────────────────────────────────────────────────── --}}

Cover Image

{{-- Image Picker Modal — starts hidden; JS adds 'flex' when opening --}} {{-- Upload modal (nested, z-60) --}} {{-- Bulletin File --}}
@if ($bulletin->path)
View Current File

Upload a new PDF only if you want to replace it.

@endif {{ $errors->first('path') }}
Cancel
@endsection @push('scripts') @endpush