@extends('core::layouts.master')
@section('breadcrumb')
@isset (request()->menu_id)
Menu /
@endisset
Thể loại {{ $taxonomy=='product'?'sản phẩm':($taxonomy=='gallery_image'?'gallery':'bài viết') }} / Tạo thể loại
@endsection
@section('head-action')
{{ Form::bsNavBtnCancel('Hủy',route('admin.category.index',['type'=>$taxonomy])) }}
{{ Form::bsNavBtnSubmit('Lưu','post-form') }}
@endsection
@section('content')
{!! Form::open([
'method' => 'POST',
'route' => ['admin.category.store','type'=>$taxonomy],
'id' => 'post-form'
]) !!}
@include('core::category.form')
{!! Form::close() !!}
@endsection