Blame view

common/modules/blog/views/category/create.php 505 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php

  use yii\helpers\Html;

  

  $this->title = Yii::t('app', 'Category create');

  $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>