@extends('layouts.admin') @section('title', __('Edit') . ' — ' . $page->title) @section('mobile_title', __('Edit page')) @section('content')
← {{ __('Back to pages') }}

{{ __('Edit page') }}

{{ __('Public URL') }}: {{ url('/r/'.$page->slug) }}

@can('update', $page) @endcan
@include('admin.pages._save_flash')
@csrf @method('PUT') @if ($errors->any()) @endif

{{ __('Page settings') }}

{{ __('Title, dates, messages, and background for this pre-registration page.') }}

@include('admin.pages._form', ['page' => $page])
@include('admin.pages._blocks_editor', ['page' => $page])
{{ __('Cancel') }}
@endsection