|
- <?php
-
-
-
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
-
- $this->setTitle('Ajouter une taxe') ;
- $this->addBreadcrumb(['label' => 'taxe', 'url' => ['index']]) ;
- $this->addBreadcrumb('Ajouter') ;
-
- ?>
-
- <div class="tax-create">
- <?php $form = ActiveForm::begin(); ?>
- <?= $form->field($model, 'name') ?>
- <?= $form->field($model, 'value') ?>
- <div class="form-group">
- <?= Html::submitButton('Ajouter', ['class' => 'btn btn-success']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|