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

Tambah Pengumuman Baru

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(isset($event))
Pengumuman ini akan ditampilkan untuk event: {{ $event->nama_kegiatan_aktif }}
@endif
@endsection