18 lines
366 B

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\ars\Brand */
$this->title = '创建 Brand';
$this->params['breadcrumbs'][] = ['label' => 'Brands', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="brand-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>