@extends('landingpage::layouts.admin') @section('title', 'Edit Section for Page: ' . $page->title) @section('module_content')

Edit Section: {{ $section->title }}

For Page: {{ $page->title }}
@csrf @method('PUT')
@include('landingpage::admin.pages.sections._form', [ 'page' => $page, 'section' => $section, 'sectionTypes' => $sectionTypes, // Passed from PageSectionController@edit 'availableLayouts' => $availableLayouts // Passed from PageSectionController@edit ])
Cancel
@endsection