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/_form.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

/* @var $this yii\web\View */
/* @var $model backend\modules\theme\models\ThemeSetting */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="theme-setting-form">

    <?php $form = ActiveForm::begin(); ?>

    <?= $form->field($model, 'setting_rule_id')->textInput() ?>

    <?= $form->field($model, 'setting_param_name')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'setting_param_value')->textInput(['maxlength' => true]) ?>

    <div class="form-group">
        <?= Html::submitButton(Yii::t('app', 'Save'), ['class' => 'btn btn-success']) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>