<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model goods\models\ars\Category */

$this->title = '编辑后台商品分类: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => '后台商品分类', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = '编辑 ';
?>
<div class="category-update">

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>