@extends('admin.layout.master') @section('body')

{{$page_title}}

{{ csrf_field() }} {{--
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif

--}}
Content
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif

Images
@foreach($page->images as $image) @endforeach

Map
@if ($errors->has('lat'))
{{ $errors->first('lat') }}
@endif
@if ($errors->has('lon'))
{{ $errors->first('lon') }}
@endif
Img around map



@if ($page->plans->count() > 0)

Plans:


@foreach($page->plans as $plan)

{!! $plan->content !!}

Edit Delete
@endforeach
@endif @if ($page->blocks->count() > 0)

Blocks:


@foreach($page->blocks as $block)

{!! $block->content !!}

Edit Delete
@endforeach
@endif
@endsection @section('script') @stop