@extends('templates.backend') @section('page-title', isset($page_title) ? $page_title : 'Create Category') @section('breadcrumbs') {!! App\Helpers\Breadcrumbs::generate([ 'Categories' => ['backend.categories.index'], 'Create' => null, ]); !!} @stop @section('content') {!! Form::open(['route' => ['backend.categories.create.post'], 'files' => true]) !!} @include('backend.categories._partials.form')