@extends('layouts.admin') @section('heading',$page->exists?'Edit '.$page->title:'New page') @section('content')
@csrf @if($page->exists)@method('put')@endif
@if($page->exists)

Page sections

@foreach($page->sections as $section)
@csrf @method('put')
@endforeach
@csrf

Add section

@endif@endsection