Search code examples
laravelcollectivebootstrap-selectpicker

whay bootstrap selectpicker not working in laravel collective?


{!! Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, 
['placeholder' => 'Pick a size...','clase'=>'selectpicker form-control']) !!}

Solution

  • You have a typo in the word class. Try:

    {!! Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, 
    ['placeholder' => 'Pick a size...','class'=>'selectpicker form-control']) !!}