6 lines
578 B
PHP
6 lines
578 B
PHP
<select class="form-control <?php echo e($class); ?>" name="<?php echo e($name); ?>[]" multiple style="width: 100%;">
|
|
<option></option>
|
|
<?php $__currentLoopData = $options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $select => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
<option value="<?php echo e($select); ?>" <?php echo e(in_array((string)$select, (array)$value) ?'selected':''); ?>><?php echo e($option); ?></option>
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
</select>
|