1<select class="js-states browser-default select2" name="shopping_id" required id="shopping_id">
2 <option value="option_select" disabled selected>Shoppings</option>
3 @foreach($shoppings as $shopping)
4 <option value="{{ $shopping->id }}" {{$company->shopping_id == $shopping->id ? 'selected' : ''}}>{{ $shopping->fantasyname}}</option>
5 @endforeach
6 </select>
7