@extends('layouts.main.app')
@section('head')
@include('layouts.main.headersection',[
'title'=> __('Create Page'),
'buttons'=>[
[
'name'=>__('Back'),
'url'=>route('admin.page.index'),
]
]
])
@endsection
@section('content')
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if(!Session::has('update-data'))
@endif
{{ __('Note') }} {{ __('If you have customised the script from codebase do not use this option. you will lose your customization.') }}
@if(Session::has('update-data'))
@if(!empty(Session::get('update-data')['message']))
@endif
@endif
@endsection
@push('js')
@endpush