Error:Maximum function nesting level of '100' reached, aborting!

In _form.php I am trying to use this simple code and I am getting the error:

Maximum function nesting level of ‘100’ reached, aborting!




<?php


use yii\helpers\Html;

use yii\widgets\ActiveForm;

use app\models\State;





/* @var $this yii\web\View */

/* @var $model app\models\State */

/* @var $form yii\widgets\ActiveForm */


 $model = new State();

?>





<?= $this->render('_form', [

        'model' => $model,

        ]) ?>



Any help, what I am doing wrong here?

If that is indeed code from "_form.php", then the following code is recursively rendering _form.php inside itself:




<?= $this->render('_form', [

        'model' => $model,

        ]) ?>



Great - this seems to be the reason.