You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
582 B
22 lines
582 B
<?php |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model UserForm */ |
|
/* @var $user User */ |
|
|
|
|
|
use core\entities\user\User; |
|
use core\forms\user\UserForm; |
|
|
|
$this->title = Yii::t('user', 'Update User: {user}', ['user' => $user->username]); |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Users'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = ['label' => $user->username, 'url' => ['view', 'id' => $user->id]]; |
|
$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing'); |
|
?> |
|
<div class="user-update"> |
|
|
|
<?= $this->render('_form', [ |
|
'model' => $model, |
|
]) ?> |
|
|
|
</div>
|
|
|