@extends('cms::layouts/dashboard') @section('breadcrumb') @endsection @section('dashboard-content')

Instructions

{{ isset($cms_page) ? 'Edit Custom CMS page #' . $cms_page['id'] : 'Add Custom CMS page' }}

@if (isset($cms_page)) @method('put') @endif @if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif @include('cms::components/form-fields/input', [ 'label' => 'Display name plural', 'name' => 'display_name_plural', 'type' => 'text', 'value' => isset($cms_page) ? $cms_page['display_name_plural'] : '', 'locale' => null ]) @include('cms::components/form-fields/input', [ 'label' => 'Route', 'name' => 'route', 'type' => 'text', 'slug_origin' => 'display_name_plural', 'value' => isset($cms_page) ? $cms_page['route'] : '', 'locale' => null ]) @include('cms::components/form-fields/input', [ 'label' => 'Icon', 'name' => 'icon', 'type' => 'text', 'value' => isset($cms_page) ? $cms_page['icon'] : '', 'locale' => null ])
@csrf
@endsection