@extends('layouts.admin') @section('title', 'Edit Page: ' . $page->title) @push('styles') @endpush @section('content')

Edit Page

Updating content for {{ $page->title }}

Back to Pages
@csrf @method('PUT')

Page Content

This content will be displayed on the page. Use the editor to format text, add links, and more.

Slug

{{ $page->slug }}
{!! old('content', $page->content) !!}

SEO Settings

Optimize this page for search engines. Provide a unique title and description.

0 words | 0/60 chars
0 words | 0/160 chars

If checked, a <meta name="robots" content="nofollow"> tag will be added, instructing search engines not to follow links on this page.

Paste your valid JSON-LD code here. It will be injected into the <head>.
Example: <script type="application/ld+json"> { "@@context": "https://schema.org", "@@type": "WebPage", "name": "Page Title", "description": "Page Description" } </script>

Cancel
@push('scripts') @endpush @endsection