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

{{$page_title}}

{{ csrf_field() }}
Page title
@if ($errors->has('page_title'))
{{ $errors->first('page_title') }}
@endif
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
Short description
@if ($errors->has('desc'))
{{ $errors->first('desc') }}
@endif
Description
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif

Image




@if ($blocks->count() > 0)

Blocks:


@foreach($blocks as $block)

{!! $block->title !!}

{!! $block->content !!}

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