@extends('layouts.app') @section('title', 'Edit Blog Post') @section('content')

Edit Blog Post

Update your blog post

← Back to Post
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

This will be shown as a preview in blog listings.

@if($post->featured_image)
Current featured image
@endif

{{ $post->featured_image ? 'Upload a new image to replace the current one' : 'Upload an image to represent your blog post' }} (max 2MB).

Minimum 100 characters required.

Re-approval Required

Any changes to this post will require admin approval again before being published.

Cancel
@endsection