Files
SmartHomePHP/modules/admin/views/user/create.php
Alex Solomaha c021d959dd Refactor
2016-10-21 16:03:14 +03:00

21 lines
458 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">
<h1 class="page-header"><?= $this->title ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>