@extends('admin.layouts.main-layout') @section('title', $title) @section('content')
@csrf
{{ $title }}
@if (session('error')) @elseif (session('success')) @endif
@if (session()->get('role') == 'superadmin')
@endif
@error('page_name')
{{ $message }}
@enderror
@error('header_footer_name')
{{ $message }}
@enderror
@if (!empty($page->encrypted_id) && !empty($page->page_image))
Page_Image
@endif
@if (!empty($page->encrypted_id))
Section Management @if (session()->get('role') == 'superadmin') + @endif Sections Sequence
@if (session()->get('role') == 'superadmin') @endif @foreach ($sectionsData as $sections) @if (session()->get('role') == 'superadmin') @endif @endforeach
S. No. Section Title Section HeadlineSection PositionSection Image More Images Status Actions
1 {{ $sections->section_title }} {{ $sections->section_headline }}{{ $sections->position_order }}
    @if (!empty($sections->section_image))
  • Section_Image
  • @endif
    @php $more_images = json_decode($sections->more_images); @endphp @if (!empty($more_images)) @foreach ($more_images as $image)
  • More_Images
  • @endforeach @endif
@endif
@endsection @section('admin-custom-js') @endsection