@extends('admin.layouts.app') @section('title', $post->exists ? 'Edit Post' : 'New Post') @push('styles') @endpush @section('content')
@csrf @if($post->exists) @method('PUT') @endif
{{-- LEFT --}}
@error('title')
{{ $message }}
@enderror
@error('excerpt')
{{ $message }}
@enderror
Content
{!! old('body', $post->body) !!}
@error('body')
{{ $message }}
@enderror
SEO
{{-- RIGHT SIDEBAR --}}
Publish
is_featured) ? 'checked' : '' }} style="width:16px;height:16px;">
Category
Tags
Press Enter or comma to add
Featured image
@endsection @push('scripts') @endpush