@extends('admin.layouts.app') @section('title', $page->exists ? 'Edit Page' : 'New Page') @push('styles') @endpush @section('content')
@csrf @if($page->exists) @method('PUT') @endif
{{-- LEFT --}}
@error('title')
{{ $message }}
@enderror
Content
{!! old('body', $page->body) !!}
SEO
{{-- RIGHT --}}
Settings
@endsection @push('scripts') @endpush