update.php
503 Bytes
<?php
use yii\helpers\Html;
$this->title = Yii::t('app', 'Update category');
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Categories'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="category-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'category_langs' => $category_langs,
'category' => $category,
'langs' => $langs,
'images' => $images
]) ?>
</div>