@extends('layouts.admin') @section('page-title', 'Edit Pengumuman') @section('page-subtitle', 'Perbarui informasi pengumuman') @section('content')

Edit Pengumuman

@csrf @method('PUT')
@error('title')

{{ $message }}

@enderror
@error('content')

{{ $message }}

@enderror
@if($announcement->attachment)

{{ basename($announcement->attachment) }}

Lihat lampiran
@endif

Format: PDF, DOC, DOCX. Maksimal 5MB. Kosongkan jika tidak ingin mengubah lampiran.

@error('attachment')

{{ $message }}

@enderror
is_published ? '1' : '0') == '0' ? 'checked' : '' }} class="h-4 w-4 text-yellow-600 focus:ring-yellow-500 border-gray-300">
is_published ? '1' : '0') == '1' ? 'checked' : '' }} class="h-4 w-4 text-yellow-600 focus:ring-yellow-500 border-gray-300">

Jika kosong, akan menggunakan waktu sekarang saat dipublikasikan.

@error('published_at')

{{ $message }}

@enderror
Batal
@endsection