@extends('layouts.app') @section('title', 'Add CMS Page') @section('content')
@if($method=='POST')

Add CMS Page

@else

Edit CMS Page

@endif Back
{{-- Alert Messages --}} @include('common.alert')
@if($method=='POST')
Add New CMS Page
@else
Edit CMS Page
@endif
@csrf @if ($method === 'PUT') @method('PUT') @endif
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@endsection @push('script') @endpush