My index.html file has a header like this: https://i.sstatic.net/s0hAt.png
I'm trying to align the checkbox and its label with the dropdown menu "In ordine". I'm using only bootstrap (no custom classes) and my current page layout is as follows.
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="content">
<div class="alert alert-secondary">
<form action="{{ url('admin/students') }}" method="GET" id="filters" >
<input type="hidden" name="filters" value="on">
<div class="form-row table mb-0">
// code continues...
</div>
</form>
</div>
</div>
</div>
</div>
</div>
Although I've searched through bootstrap documentation, I have yet to find a solution that suits my needs.
//edit: This is what I initially wanted when posting this question: https://i.sstatic.net/G4gJn.png
However, due to lack of clarity in my question, I had to settle for an answer. I forgot to mention that I wanted the checkbox to be centered relative to the label.