@extends('admin.layouts.main') @section('title', $page->exists ? 'Edit Page' : 'Create Page') @section('menu', 'Pages') @section('content')
@csrf @if($page->exists) @method('PUT') @endif
Page Details
@if ($errors->has('title')){{ $errors->first('title') }}@endif
@if ($errors->has('slug')){{ $errors->first('slug') }}@endif
@if ($errors->has('content')){{ $errors->first('content') }}@endif
SEO
@if ($errors->has('meta_title')){{ $errors->first('meta_title') }}@endif
@if ($errors->has('meta_description')){{ $errors->first('meta_description') }}@endif
Options
is_published ?? false) ? 'checked' : '' }}>
Publish
@endsection @push('custom-stylesheets') @endpush @push('scripts') @endpush