There is the following code:
<div id="newsletter"> <?php $form = \yii\bootstrap\ActiveForm::begin([ 'options' => [ 'class' => 'form-inline' ] ]) ?> <?= $form->field($model, 'email')->input('email')->label(false) ?> <?= \yii\bootstrap\Html::submitButton('Сообщить', ['class' => 'btn btn-warning btn-lg']) ?> <?php $form->end() ?> </div> The error message is displayed under the email input field, but it is necessary that the message be displayed under the button. Help me please.
