Blame view

common/modules/blog/views/category/update.php 485 Bytes
b0f143c3   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?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>