Blame view

frontend/views/option/create.php 445 Bytes
b0f143c3   Yarik   first commit
1
2
3
4
5
6
  <?php
  
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
cdb04594   Yarik   test
7
  /* @var $model common\models\Option */
b0f143c3   Yarik   first commit
8
9
10
11
12
13
  
  $this->title = Yii::t('app', 'Create Option');
  $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Options'), 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="option-create">
cdb04594   Yarik   test
14
  
b0f143c3   Yarik   first commit
15
      <h1><?= Html::encode($this->title) ?></h1>
cdb04594   Yarik   test
16
17
18
19
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
b0f143c3   Yarik   first commit
20
21
  
  </div>