| Current Path : /var/www/html/learn/backend/modules/learning/views/learning-quiz/ |
| Current File : /var/www/html/learn/backend/modules/learning/views/learning-quiz/_form.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\modules\learning\models\LearningQuiz */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="learning-quiz-form">
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'chapter_id')->textInput() ?>
<?= $form->field($model, 'quiz_question')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'quiz_sort')->textInput() ?>
<?= $form->field($model, 'created_at')->textInput() ?>
<?= $form->field($model, 'created_by')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'created_user_type')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'updated_at')->textInput() ?>
<?= $form->field($model, 'updated_by')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'updated_user_type')->textInput(['maxlength' => true]) ?>
<div class="form-group">
<?= Html::submitButton(Yii::t('app', 'Save'), ['class' => 'btn btn-success']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>