@extends('layouts.admin') @section('page-title', 'Edit Berita') @section('page-subtitle', 'Perbarui informasi berita') @section('content')

Edit Berita

@csrf @method('PUT')
@error('title')

{{ $message }}

@enderror
@error('content')

{{ $message }}

@enderror
@if($news->image)
Current Image
@endif

Format: JPG, PNG, GIF. Maksimal 2MB. Kosongkan jika tidak ingin mengubah gambar.

@error('image')

{{ $message }}

@enderror
is_published ? '1' : '0') == '0' ? 'checked' : '' }} class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300">
is_published ? '1' : '0') == '1' ? 'checked' : '' }} class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300">

Jika kosong, akan menggunakan waktu sekarang saat dipublikasikan.

@error('published_at')

{{ $message }}

@enderror
Batal
@endsection