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.
19 lines
559 B
19 lines
559 B
<?php |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model \core\forms\user\UserForm */ |
|
/* @var $user \core\entities\user\User */ |
|
|
|
|
|
$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>
|
|
|