@extends('layouts.app') @section('title', 'Edit ' . $page->title) @section('content')
← Back to Legal Pages

Edit {{ $page->title }}

URL: /legal/{{ $page->slug }}

@if($errors->any())

Please fix the following errors:

@endif
@csrf @method('PUT')
{!! old('content', $page->content) !!}

Use the toolbar to format your content. HTML is supported.

Cancel
@if($page->is_active) Preview @endif
@endsection