@extends('adminlte::page') @section('title', 'Edit ' . ucfirst($post->type)) @section('content_header')

Edit {{ ucfirst($post->type) }}

Kembali
@stop @section('content')
{{-- Pastikan enctype ada agar file terkirim --}}
@csrf @method('PUT')
{{-- Kolom Kiri: Konten Utama --}}
@error('title')
{{ $message }}
@enderror
@error('content') {{ $message }} @enderror
{{-- Kolom Kanan: Pengaturan & Meta --}}

Media & Atribut

{{-- Preview Gambar --}}
@php // Logika pemanggilan gambar sesuai setup public/storage Anda $imagePath = $post->thumbnail ? asset('storage/'.$post->thumbnail) : asset('images/no-image.png'); @endphp
{{-- Nama input HARUS 'thumbnail' agar sinkron dengan Controller --}}
Biarkan kosong jika tidak ingin mengubah gambar.

@if($post->type == 'agenda')
@endif
@stop @section('css') @stop @section('js') @stop