is that possible create default select in multiple select options but that default select not selected.
like default notification, when we not select anything will displaying "Nothing Selected".
i want to change that "Nothing Selected" for example with "Select Category"
my code
<select multiple class="selectpicker" data-live-search="true" id="nama_kat" name="nama_kat[]" form="tambahposting">
<?php foreach ($data2 as $value): ?>
<div class="form-group">
<option>
<?php echo $value['nama_kat'] ?>
</option>
<?php endforeach; ?>
</select>

<div class="form-group">in select box?