When working with Yii 2.0 I keep up facing this problem:
Fatal error: Uncaught Error: Class 'yii\widgets\ActiveForm' not found"
I have checked the the widgets and ActiveForm
is present.
I tried also with yii\bootstrap\ActiveForm
but the same error keep ocuring.
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'ID_ENSEIGNANT') ?>
<?= $form->field($model, 'DATENAISSANCE') ?>
<?= $form->field($model, 'MATRICULE') ?>
<?= $form->field($model, 'NOM') ?>
<?= $form->field($model, 'PRENOM') ?>
<?= $form->field($model, 'DISCIPLINE') ?>
<?= $form->field($model, 'FONCTION') ?>
<?= $form->field($model, 'SEX') ?>
<?= $form->field($model, 'TEL') ?>
<?= $form->field($model, 'EMAIL') ?>
<?= $form->field($model, 'ADRESSE') ?>
<?= $form->field($model, 'STATUT') ?>
<div class="form-group">
<?= Html::submitButton('Submit', ['class' => 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>