0
Follow the code of Lade, when I go to edit mode the corresponding data does not appear and yes Lect2 is empty.
<select name="cliente_id">
<option value=""></option>
@foreach ($clientes as $cliente )
<option name="cliente_id" value="{{$cliente->id}}"
@if(old('cliente_id')==$cliente->id) {{'selected'}} @endif>
{{$cliente->nome}}
@endforeach
</select>