123456789101112131415161718192021222324252627 |
- <?php
- use yii\bootstrap\ActiveForm;
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model common\models\Carousel */
- /* @var $form yii\bootstrap\ActiveForm */
- ?>
- <div class="widget-carousel-form">
- <?php $form = ActiveForm::begin(); ?>
- <?php echo $form->field($model, 'key')->textInput(['maxlength' => 1024]) ?>
- <?php echo $form->field($model, 'title')->textInput(['maxlength' => true]) ?>
- <?php echo $form->field($model, 'status')->checkbox() ?>
- <div class="form-group form-submit">
- <?= Html::submitButton($model->isNewRecord ? Yii::t('backend', 'Create') : Yii::t('backend', 'Update'), ['class' => 'btn btn-success']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|