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 line
506B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\User */
  5. $this->title = 'Modifier un client' ;
  6. $this->params['breadcrumbs'][] = ['label' => 'Clients', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => Html::encode($model->nom.' '.$model->prenom)];
  8. $this->params['breadcrumbs'][] = 'Modifier';
  9. ?>
  10. <div class="user-update">
  11. <h1><?= Html::encode($this->title) ?></h1>
  12. <?= $this->render('_form', [
  13. 'model' => $model,
  14. ]) ?>
  15. </div>