How to add css to Laravel Collective Form::select elemet in the following format
Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, ['placeholder' => 'Pick a size...']);
How to add css to Laravel Collective Form::select elemet in the following format
Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, ['placeholder' => 'Pick a size...']);
You can class as fourth parameter like ['class' => 'your_define_class']
Form::select('size', ['L' => 'Large', 'S' => 'Small'], null, ['placeholder' => 'Pick a size...'],['class' => 'your_define_class']);
Try this