Edit Blog Post
@csrf @method('PUT')
Title
Slug (URL)
Excerpt
{{ old('excerpt', $post->excerpt) }}
Content
{{ old('content', $post->content) }}
Featured Image
@php $imagePath = ltrim($post->featured_image ?? '', '/'); @endphp @if($post->featured_image && file_exists(public_path($imagePath)))
@else
No image available
@endif
Meta Title
Meta Description
{{ old('meta_description', $post->meta_description) }}
Meta Keywords
Status
status) == 'draft' ? 'selected' : '' }}> Draft
status) == 'published' ? 'selected' : '' }}> Published
is_featured) ? 'checked' : '' }}> Featured Post
allow_comments) ? 'checked' : '' }}> Allow Comments
Update Post