laravel-bootstrap-4-forms
laravel-bootstrap-4-forms copied to clipboard
Is it possible to create horizontal form?
https://getbootstrap.com/docs/4.0/components/forms/#horizontal-form Something like this:
<form>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
</form>
Good point, @NickKingston . For now, only default and inline are available. But I can do this soon :) I will leave this open, and close when this feature is implemented.
Thanks!
is this a duplicate from #53 ?