I have got the Bootstrap 3 code below:
<div class="form-group">
<div class="col-sm-3 control-label">
<label>Surname:</label>
</div>
<div class="col-sm-9">
<input class="form-control" type="text" name="surname"><span>!</span>
</div>
And I need to show the exclamation mark next to the input, but it is always on the new line. How to put it nex to the input, please?
Thanks