38 lines
896 B
PHP
38 lines
896 B
PHP
@extends('admin::layouts.master')
|
|
|
|
@section('title')
|
|
Create Page
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
@php
|
|
$breadcrumbData = [
|
|
[
|
|
'title' => 'Page',
|
|
'link' => 'null',
|
|
],
|
|
[
|
|
'title' => 'Dashboard',
|
|
'link' => route('dashboard'),
|
|
],
|
|
[
|
|
'title' => 'Pages',
|
|
'link' => null,
|
|
],
|
|
[
|
|
'title' => 'Add Page',
|
|
'link' => null,
|
|
],
|
|
];
|
|
@endphp
|
|
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
|
@endsection
|
|
@section('content')
|
|
<div class="row">
|
|
<form action="{{ route('cms.pages.store') }}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
@include('page::partial.form')
|
|
</form>
|
|
</div>
|
|
@endsection
|