How do I return the value that is in the bank of a select field and continue showing the other options for editing:
<div class="form-group">
<label>Tipo de imóvel</label>
<select name="tipo_id" class="form-control">
<option selected="disabled">Selecionar</option>
@foreach($types as $value)
<option>{{$value->nome}}</option>
@endforeach
</select>
</div>