我无法解决此问题。请帮忙!
我已经尝试过:required="required"
<span class="channel">
<select class="selectpicker" name="channel_id" data-style="btn btn-link" id="exampleFormControlSelect1" required="true">
<option>Channel</option>
@foreach($channels as $channel)
<option value="{{ $channel->id }}">{{ $channel->title }}
</option>
@endforeach
</select>
</span>
如果Bootstrap 4中还有其他选项,请告诉我。