|
- <?php
-
- use yii\helpers\Html;
-
-
- /* @var $this yii\web\View */
- /* @var $model common\models\BaseUserAuth */
- /* @var $roles array BaseRole */
-
- $this->title = 'Create Base User Auth';
- $this->params['breadcrumbs'][] = ['label' => 'Base User Auths', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="iframe_box base-user-auth-create">
-
- <h1><?= Html::encode($this->title) ?></h1>
-
- <?= $this->render('_form', [
- 'model' => $model,
- 'roles' => $roles
- ]) ?>
-
- </div>
|