@extends('admin.layout.tamplate') @section('content')
{{-- Header Section --}}

{{-- {{ isset($news) ? 'Ubah Berita' : 'Buat Berita Baru' }} --}}

@include('admin.layout.breadcumb')
Kembali
{{-- Form Start --}}
@csrf @if (isset($news)) @method('PUT') @endif
{{-- Kiri: Input Utama --}}
{{-- Judul Berita --}}
@error('title')

{{ $message }}

@enderror
{{-- Konten Lengkap --}}
@error('content')

{{ $message }}

@enderror
{{-- Kanan: Sidebar --}}
{{-- Thumbnail Gambar --}}
{{-- Preview Logic yang diperbaiki --}} @php $hasImage = isset($news) && $news->image; @endphp

Klik untuk {{ $hasImage ? 'Ganti' : 'Upload' }}

Max 2MB (JPG/PNG/WEBP)

@error('image')

{{ $message }}

@enderror
{{-- Kategori --}}
{{-- Status & Publish --}}

User dapat berkomentar

{{-- CSS KHUSUS CKEDITOR --}} {{-- SCRIPT SECTION --}} @endsection