Initial commit
This commit is contained in:
22
frontend/views/user/update.php
Normal file
22
frontend/views/user/update.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/** @var yii\web\View $this */
|
||||
/** @var common\models\User $model */
|
||||
/** @var array $salesAgents */
|
||||
|
||||
$this->title = Yii::t('app', 'Update User: {name}', [
|
||||
'name' => $model->email,
|
||||
]);
|
||||
?>
|
||||
<div class="user-update container1">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
'salesAgents' => $salesAgents
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user