<?php

use yii\helpers\Html;

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

$this->title = '创建前端商品分类';
$this->params['breadcrumbs'][] = ['label' => '前端商品分类', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="shop-category-create">

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

</div>