I have this select
.
<select name="" id="" class="form-control" >
@foreach($sede as $user)
@if($user->idSede != $coordinadorAdm->Sede)
<option value="{{$user->idSede}}">{{$user->nombre}}</option>
@endif
@endforeach
</select>
The problem is that if I need to send the $user->idSede
selected, it does not take it, but it always has the last value.