I'm having a hard time getting Help-texts showing up properly (i.e. at the bottom of the field) with Bootstrap 4's input-groups with add-ons. Here's my code:
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">Title</span>
</div>
<textarea class="form-control" name="title" aria-label="With textarea"></textarea>
<small id="KeywordsHelpBlock" class="input-group-prepend text-muted">
Some .
</small>
</div>
Here is what it looks like:
Am I missing something obvious?