@extends('admin.layouts.home') @section('title', 'Edit Blog') @section('content')

Edit Blog: {{ $blog->title }}

Back to Blogs
Blog Information
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Basic Information
A brief summary of the blog (max 500 characters).
SEO Information
The slug is automatically generated from the title and used in the URL.
Recommended: 50-60 characters
Recommended: 150-160 characters
Separate keywords with commas
Publishing Options
active) ? 'checked' : '' }}>
If enabled, this blog will be visible to users.
is_featured) ? 'checked' : '' }}>
Mark this blog as featured.

Created: {{ $blog->created_at->format('M d, Y H:i') }}

Last Updated: {{ $blog->updated_at->format('M d, Y H:i') }}

Category
@error('category_id') {{ $message }} @enderror
Thumbnail
@if($blog->thumbnail) @else

No image selected

@endif
Recommended size: 1200x630 pixels. Max size: 2MB.
@endsection @push('scripts') @endpush