I am using laravel with an AdminLte template that supposedly brings the css and js of Select2, a package that I need to have multiselects, but it does not work it simply puts the multiselect of html flat. What may be happening, I am using this code:
<select class="js-example-basic-multiple" name="permissions" multiple="multiple">
@foreach($permission as $per)
<option value="{{$per->id}}" >{{$per->display_name}}</option>
@endforeach
</select>