I have simple select, He was work before install chosen plugin
<select id="product_brands" class="chosen-select form-control" multiple data-placeholder="Select brands">
@foreach($brands as $brand)
<option name="product[brands][]" value="{{$brand->brand_id}}"> {{$brand->brand_name}} </option>
@endforeach
Set chosen
$(".chosen-select").chosen({width: "100%"});
And when I do print_r in my php script I get nothing from selected data
array:2 ["main" => array:2 ["name" => "test", "count" => "0" ] "contacts" => "1196656" ]
There should have been a list product[brands] (