Blame view

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