I am presenting a problem when aligning my form and it is that when I click on a inputtext
as if it were to be entered, it validates it and I get its message and makes the name of textArea
Description move '
This is the code I'm using
<form>
<div class="form-row">
<div class="col-xs-12 col-sm-6">
<?= $form->field($model, 'idArea')->textInput(['maxlength' => true]) ?>
</div>
<div class="col-xs-12 col-sm-6">
<?= $form->field($model, 'Nombre')->textInput(['maxlength' => true]) ?>
</div>
</div>
<div class="form-row">
<div class="col">
<?= $form->field($model, 'Descripcion')->textarea(['maxlength' => true, 'rows' => "5"]) ?>
</div>
</div>
<div class="form-group">
<?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
</div>
</form>