@extends('admin.layout.tamplate') @section('content')
@include('admin.layout.breadcumb')
{{-- Logika Penentuan Mode (Tambah atau Edit) --}} @php $isEdit = isset($data); $route = $isEdit ? route('dashboard.program.update', $data->id) : route('dashboard.program.store'); @endphp
@csrf @if($isEdit) @method('PUT') @endif {{-- Kolom Kiri: Upload Thumbnail Utama --}}

Gambar Sampul

{{-- Preview Container --}}
@if($isEdit && $data->image_meta) @else
Pilih Foto
@endif
@error('image')

{{ $message }}

@enderror

Rekomendasi ukuran: 800x800px
Maksimal 2MB (JPG/PNG/WEBP)

{{-- Kolom Kanan: Form Konten --}}
{{-- Title --}}
@error('title') {{ $message }} @enderror
{{-- Kategori --}}
{{-- Deskripsi (CKEditor) --}}
@error('description') {{ $message }} @enderror
{{-- Tombol Aksi --}}
Kembali ke Daftar
{{-- CKEditor 5 & Styling --}} @endsection