Which way to use form group?
I use the following way
<div class="row">
<div class="col-md-2" align="center">
<span class="glyphicon glyphicon-user" style="font-size:60px"></span>
</div>
<div class=" col-md-10">
<form class="form-group" role="form">
<div class="row">
<div class="form-group">
<div class="col-md-10">
<label>Nome</label>
<input type="text" class="form-control">
</div>
<div class="col-md-2">
<label>Situação</label>
<select class="form-control">
<option>Ativa</option>
<option>Inativa</option>
</select>
</div>
</div>
</div>
</form>
</div>
and by taking the form-group it works,
leaving it to the input and the select it works
leaving form-group to face one of the components, it works ...
Which way is correct?