


<?php
    if(old($name, -1) != -1):
        $value = old($name);
   elseif(isset($checked)):
        $value = $checked;
   else:
        $value = $default;
   endif;
?>

<input type="radio" class="u-radio" name="<?php echo e($name); ?>" data-value="<?php echo e($value); ?>" value="0" <?php echo e(isChecked($value,'',  0)); ?> id="<?php echo e($name); ?>-0" >
<label for="<?php echo e($name); ?>-0" class="u-radio__label">無</label>
<input type="radio" class="u-radio" name="<?php echo e($name); ?>" value="1" <?php echo e(isChecked($value,'',  1)); ?> id="<?php echo e($name); ?>-1" >
<label for="<?php echo e($name); ?>-1" class="u-radio__label">有</label>
<input type="radio" class="u-radio" name="<?php echo e($name); ?>" value="2" <?php echo e(isChecked($value,'',  2)); ?> id="<?php echo e($name); ?>-2" >
<label for="<?php echo e($name); ?>-2" class="u-radio__label">未選択</label>
