@extends('core::layouts.master') @section('breadcrumb') Quản lý thể loại / Cập nhật thể loại @endsection @section('head-action') {{ Form::bsNavBtnCancel('Hủy',route('admin.category.index',$taxonomy)) }} {{ Form::bsNavBtnSubmit('Lưu','post-form') }} @endsection @section('content') {!! Form::open([ 'method' => 'PATCH', 'route' => ['admin.category.update',$taxonomy,$category['id']], 'id' => 'post-form' ]) !!} @include('core::category.form') {!! Form::close() !!} @endsection