@extends('layouts.app') @section('title', 'Edit Pengumuman') @section('content')

Edit Pengumuman

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if($announcement->detailEvent)
Pengumuman ini terkait dengan event: {{ $announcement->detailEvent->nama_kegiatan_aktif }}
@endif
@endsection