2
Follow the code of the Lade:
<select name="tipo_id" class="form-control col-md-3 col-xs-12">
<option value=""></option>
@foreach ($tipos as $tipo )
<option name="tipo_id" value="{{$tipo->id}}">
{{$tipo->description}}
</option>
@endforeach
</select>