22 lines
492 B
PHP
22 lines
492 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use backend\components\AdminCustomerTabWidget;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Customer */
|
|
|
|
$this->title = "Vendég módosítása";
|
|
$this->params['breadcrumbs'][] = "Vendég";
|
|
$this->params['breadcrumbs'][] = Yii::t('common/customer', 'Update');
|
|
?>
|
|
<?php echo AdminCustomerTabWidget::widget(['customer' => $model]) ?>
|
|
<div class="customer-update">
|
|
|
|
|
|
<?= $this->render('_form_update', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|