2024-03-22 14:48:35 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
|
|
/** @var yii\web\View $this */
|
|
|
|
/** @var app\models\User $model */
|
|
|
|
|
2024-03-23 13:42:15 +08:00
|
|
|
$this->title = '添加用户';
|
2024-03-22 14:48:35 +08:00
|
|
|
$this->params['breadcrumbs'][] = ['label' => '用户管理', 'url' => ['user']];
|
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
?>
|
|
|
|
<div class="user-create">
|
|
|
|
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
|
|
<?= $this->render('_user_add_form', [
|
|
|
|
'model' => $model,
|
|
|
|
]) ?>
|
|
|
|
|
|
|
|
</div>
|