Laravel 5选择多个选项以删除所有选择

I am having a select in my form with multiple select feature and it works good except If I have made any selection I can't remove all the selections as atleast one has to be selected.

How can this remove all selection be achieved. Below is my code for the select

<div class="form-group">
     <label for="factory_access">Factories Access</label>
     {!! Form::select('factories[]', $factories,$edit? $selectedFact:'' , ['class' => 'form-control','id' => 'example-getting-started', 'multiple' => 'multiple']) !!}
</div>

As @CanCelik suggested I solved the issue using a jQuery based plugin. I finally used Select2 which is quite similar to Selectize.

I still had problems that the plugin though included in the blade.php would not work and the reason was permissions on the files in assets folder.