@extends('admin.layouts.home') @section('title', 'Edit Custom Page') @section('styles') @endsection @section('content')

Edit Custom Page

Preview Back to Pages
Page Information
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
The slug is used in the URL of the page. Use only letters, numbers, and hyphens.
Publication Settings
active) ? 'checked' : '' }}>
Enable to make this page visible to visitors.
show_in_header) ? 'checked' : '' }}>
Display this page in the website header navigation.
show_in_footer) ? 'checked' : '' }}>
Display this page in the website footer navigation.
Pages with lower numbers will display first.
SEO Settings
A brief description of the page for search engines. Recommended length: 150-160 characters.
Comma-separated keywords related to this page.
Page Information

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

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

@if($customPage->creator)

Created By: {{ $customPage->creator->name }}

@endif @if($customPage->updater)

Last Updated By: {{ $customPage->updater->name }}

@endif
Cancel
@endsection @section('scripts') @endsection