checkbox.blade.php 591 B

12345678910111213
  1. @foreach($options as $k => $label)
  2. <div class="vs-checkbox-con vs-checkbox-{{ $style }}" style="margin-right: {{ $right }}">
  3. <input {!! in_array($k, $disabled) ? 'disabled' : '' !!} value="{{$k}}" {!! $attributes !!} {!! (in_array($k, $checked)) ? 'checked' : '' !!}>
  4. <span class="vs-checkbox vs-checkbox-{{ $size }}">
  5. <span class="vs-checkbox--check">
  6. <i class="vs-icon feather icon-check"></i>
  7. </span>
  8. </span>
  9. @if($label !== null && $label !== '')
  10. <span>{!! $label !!}</span>
  11. @endif
  12. </div>
  13. @endforeach