I am trying to validate a dropdown list. The items of the list is taking from database and is shown below.
<select class="form-control" name="clstechid">
<option value="0">Select</option>
@foreach($persons as $person)
@if($person->ttype == 1)
<option value="{{$person->id}}">{{$person->tname}}</option>
@endif
@endforeach
</select>
I want to validate this dropdown menu. The selected item should not be 'Select' option. How will I validate?? Can anyone help??