@extends('layouts.app') @section('content')
{{ isset($page) ? 'Edit Page' : 'Create Page' }}
Back
@php $pages = [ 'home' => 'Home', 'india-tour' => 'India Tour', 'desert-camping' => 'Desert Camping', 'theme-based' => 'Theme Based', 'student-tour' => 'Student Tour', 'international-tour' => 'International Tour', 'transport-service'=> 'Transport Service', 'gallery' => 'Gallery', 'guest-feedback' => 'Guest Feedback', 'about-us' => 'About Us', 'contact-us' => 'Contact Us', 'faq' => 'FAQ', 'privacy-policy' => 'Privacy Policy', 'terms-conditions' => 'Terms & Conditions', 'refund-policy' => 'Refund Policy' ]; @endphp
@include('partials.errors')
@csrf @if (isset($page)) @method('PUT') @endif
@endsection