13 lines
363 B
PHP
13 lines
363 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', __('New page'))
|
|
|
|
@section('mobile_title', __('New page'))
|
|
|
|
@section('content')
|
|
<div class="mx-auto max-w-6xl">
|
|
<h1 class="text-2xl font-semibold text-slate-900">{{ __('Create page') }}</h1>
|
|
<p class="mt-2 text-sm text-slate-600">{{ __('Form will be added in Step 8.') }}</p>
|
|
</div>
|
|
@endsection
|