We are currently creating a drop down in Laravel like so:
{{Form::select('job_location_id',
$jobLocationList,
'',
['class' => 'form-control',
'autocomplete' => 'off']
)}}
Is it possible to make this a "Select Multiple" with Laravel?