| Current Path : /var/www/html/learn/backend/modules/theme/views/theme-setting/ |
| Current File : /var/www/html/learn/backend/modules/theme/views/theme-setting/create.php |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\theme\models\ThemeSetting */
$this->title = Yii::t('app', 'Create Theme Setting');
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Theme Settings'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="theme-setting-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>