this will help you , just compare with old if exist , if not then compare with the default value
<select name="select_name">
@foreach($options as $key => $text)
<option {{ ($key == old('select_name',$default))?'selected':'' }}> {{ $text }} </option>
@endforeach
</select>
the $default
is the value that injected from the controller to the view