@extends('residential.templates.uadmin') @section('content')

Pages

@if (session('status'))
{{ session('status') }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif
Edit Sections: {{ $page->name }}
@foreach($sections as $type => $secs) @if(count($secs))

{{ucfirst($type)}}

@endif @foreach($secs as $sec) @if($section && $section->id == $sec->id)
@if(old('content')) @else @endif
{{$section->name}} @if($warn) @endif
@else
{{$sec->name}} @if(!$section) @endif
@endif @endforeach @if(count($secs))

@endif @endforeach
@if($section) @endif @endsection @section('extras') @endsection