update.php 643 Bytes
<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model common\models\AccountsVin */

$this->title = 'Редактировать Accounts Vin: ' . ' ' . $model->account_id;
$this->params['breadcrumbs'][] = ['label' => 'Accounts Vins', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->account_id, 'url' => ['view', 'account_id' => $model->account_id, 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Редактировать';
?>
<div class="accounts-vin-update">

    <h1><?= Html::encode($this->title) ?></h1>

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>