| Current Path : /var/www/html/dynaweb.blunetdev.com/backend/modules/support/views/support-faq/ |
| Current File : /var/www/html/dynaweb.blunetdev.com/backend/modules/support/views/support-faq/_search.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\models\support\SupportFaqSearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="support-faq-search">
<?php $form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]); ?>
<!--<?= $form->field($model, 'support_faq_id') ?>-->
<?= $form->field($model, 'support_faq_title',['labelOptions' => ['class' => 'control-label col-xs-1']])->textInput(['class' => 'control-label col-xs-2']); ?>
<br>
<br>
<!--<?= $form->field($model, 'support_faq_description') ?>
<?= $form->field($model, 'support_faq_question') ?>
<?= $form->field($model, 'support_faq_answer') ?>-->
<?php // echo $form->field($model, 'support_faq_role') ?>
<?php // echo $form->field($model, 'support_faq_createdat') ?>
<?php // echo $form->field($model, 'support_faq_createdby') ?>
<?php // echo $form->field($model, 'support_faq_updatedat') ?>
<?php // echo $form->field($model, 'support_faq_updatedby') ?>
<div class="form-group">
<?= Html::submitButton("<i class=\"glyphicon glyphicon-search\"></i> " .Yii::t('app', 'Cari'), ['class' => 'btn btn-success']) ?>
<?= Html::a("<i class=\"glyphicon glyphicon-refresh\"></i> " .yii::t('app','Set Semula'), ['index'],['class' => 'btn btn-warning']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>