I am currently facing an issue with displaying the invalid-feedback text using Bootstrap 4.0 (non-beta) validation.
<div class="form-row">
<label class="form-control-label">Name:</label>
<div class="col-4">
<input class="form-control is-invalid" min="0" type="number"/>
</div>
<div class="col-4">
<div class="invalid-feedback">
Invalid Feedback Text
</div>
</div>
</div>
The issue arises because the "Invalid Feedback Text" is not being displayed in this example.
This problem exists because the invalid-feedback div is not directly next to the input control.
This was a known issue in the alpha/beta versions, but I believed it was resolved in the 4.0 release as indicated by the closed ticket.
How can I incorporate bootstrap validation if the feedback text cannot be placed directly after the input control? This arrangement is not practical for my application.
You can find a demonstration on this fiddle: https://jsfiddle.net/zygrsrox/