@extends('layout.master') @section('title') @if (isset($pageTitle)) {{ $pageTitle }} @endif @endsection @section('main-body')

{{ isset($pageTitle) ? $pageTitle : '' }}

@include('layout.message')
{{ Form::open(['route' => 'blogSave', 'files' => 'true']) }}
{{ $errors->first('title') }}
{{ $errors->first('category_id') }}
{{ $errors->first('status') }}
{{ $errors->first('description') }}
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if(isset($item)) @endif
{{ Form::close() }}
@endsection @section('script') @endsection