@extends('layouts.app') @section('content')

Edit Post - {{ $website->name }}

Back to Posts
@if($errors->any()) @endif
@csrf @method('PUT')
Post Content
@error('title')
{{ $message }}
@enderror
@error('slug')
{{ $message }}
@enderror
Brief summary of the post @error('excerpt')
{{ $message }}
@enderror
@error('content')
{{ $message }}
@enderror
SEO Settings
Leave empty to use post title
Publish
@error('status')
{{ $message }}
@enderror
@error('published_at')
{{ $message }}
@enderror
is_featured) ? 'checked' : '' }}>
allow_comments) ? 'checked' : '' }}>

Featured Image
@if($post->featured_image)
Current Featured Image Current Image
@endif
@error('featured_image')
{{ $message }}
@enderror
Category
New
@error('post_category_id')
{{ $message }}
@enderror
Tags
New
Hold Ctrl/Cmd to select multiple tags
Statistics

Views: {{ $post->views_count }}

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

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

@push('scripts') @endpush @endsection