Your IP : 216.73.216.79


Current Path : /var/www/html/persada/backend/modules/theme/views/theme-setting/
Upload File :
Current File : /var/www/html/persada/backend/modules/theme/views/theme-setting/update.php

<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model backend\modules\theme\models\ThemeSetting */

$this->title = Yii::t('app', 'Update Theme Setting: {name}', [
    'name' => $model->setting_id,
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Theme Settings'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->setting_id, 'url' => ['view', 'id' => $model->setting_id]];
$this->params['breadcrumbs'][] = Yii::t('app', 'Update');
?>
<div class="theme-setting-update">

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

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

</div>