@extends('admin.layouts.app') @section('title', 'Edit Page - ' . ucwords(str_replace('-', ' ', $page))) @section('content')

Edit Page

{{ ucwords(str_replace('-', ' ', $page)) }}

Last Modified
{{ date('M d, Y H:i') }}
Back to Pages
@csrf @method('PUT')
@error('title')

{{ $message }}

@enderror
0 characters
@error('content')

{{ $message }}

@enderror

Quick Actions

Page Statistics

Words 0
Reading Time 0 min
Last Saved Never

Preview

{{ old('title', $pageData['title'] ?? 'Page Title') }}

{!! old('content', $pageData['content'] ?? '

Page content will appear here...

') !!}
@push('scripts') @endpush @endsection @section('scripts') @endsection