@extends('layouts.admin') @section('title', isset($blog) ? 'Edit Blog Post' : 'New Blog Post') @section('content')
Back / {{ isset($blog) ? 'Edit Post' : 'Create Post' }}
@csrf @if(isset($blog)) @method('PUT') @endif
{{-- Main Content --}}
@error('title')

{{ $message }}

@enderror
@error('content')

{{ $message }}

@enderror

SEO & Meta

{{-- Sidebar --}}

Publishing

Featured Image

@if(isset($blog) && $blog->thumbnail) @endif

Recommended: 1200x800px

@endsection @push('scripts') {{-- Consider adding a rich text editor like TinyMCE or Trix --}} @endpush