@extends('blog::layouts.master') @section('title', '| Create new blog ') @section('content')

Create New Blog

Back to Blogs
New Blog
{!! Form::open(['url' => '/blogs/create-new/save', 'class' => 'form-horizontal col-md-12', 'role' => 'form', 'files' => true]) !!} @include('blog::_form', [ 'disabledField' => Auth::user()->hasAnyRole(['ADMIN', 'EDITOR']) ? '' : 'disabled' ]) @if (Auth::user()->hasAnyRole(['ADMIN', 'EDITOR']))
@endif {!! Form::close() !!}
@endsection