Mahdi Bashirpour
Mahdi Bashirpour

Reputation: 18803

whay bootstrap selectpicker not working in laravel collective?

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

Upvotes: 0

Views: 366

Answers (1)

kerrin
kerrin

Reputation: 3452

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']) !!}

Upvotes: 3

Related Questions