As I can organize my form, I am using bootstrap but I can not organize the description field which is a textarea below the other two inputtext
This is the code I'm using
<form>
<div class="form-row">
<div class="form-group col-md-4">
<?= $form->field($model, 'idArea')->textInput(['maxlength' => true]) ?>
</div>
<div class="form-group col-md-4">
<?= $form->field($model, 'Nombre')->textInput(['maxlength' => true]) ?>
</div>
</div>
<div class="form-row">
<?= $form->field($model, 'Descripcion')->textarea(['maxlength' => true, 'style' => 'width:40%']) ?>
</div>
</form>