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

Add New Section

For Page: {{ $page->title }}
@csrf
@include('landingpage::admin.pages.sections._form', [ 'page' => $page, 'section' => $section, // This is a new LpPageSection instance from controller 'sectionTypes' => $sectionTypes, // Passed from PageSectionController@create 'availableLayouts' => $availableLayouts // Passed from PageSectionController@create ])
Cancel
@endsection