coinwind/storage/framework/views/5a810449320847673b83277eb31...

6 lines
577 B
PHP

<select class="form-control <?php echo e($class); ?>" name="<?php echo e($name); ?>" 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((string)$select === (string)request($name, $value) ?'selected':''); ?>><?php echo e($option); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>