new-support.webeffector.ru/backend/modules/user/views/default/create.php

28 lines
552 B
PHP
Raw Permalink Normal View History

2024-07-04 06:42:20 +03:00
<?php
use yii\web\View;
use yii\helpers\Html;
use common\components\user\models\User;
/**
* @var $this View
* @var $model User
*/
$this->title = Yii::t('user', 'Добавление');
$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Пользователи'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="row">
<div class="col-xs-12">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>
</div>