@extends('layouts.app') @section('content')
{{-- Success Message --}} @if(session('Berjaya'))
{{ session('Berjaya') }}
@endif {{-- Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form --}}
{{ isset($kategoriSurat) ? 'Edit' : 'Tambah' }} Kategori Surat
@csrf @if(isset($kategoriSurat)) @method('PUT') @endif
Kembali
@endsection