yii2-netdisk/views/admin/user_create.php

21 lines
421 B
PHP
Raw Normal View History

2024-03-22 14:48:35 +08:00
<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var app\models\User $model */
$this->title = '创建用户';
$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>