mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-24 13:21:20 +01:00
19 lines
404 B
PHP
19 lines
404 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model app\models\User */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = 'Добавить Пользователя';
|
|
$this->params['breadcrumbs'][] = ['label' => 'Пользователи', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="user-create">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|