You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
671 B
21 lines
671 B
@if($inline) |
|
<div class="d-flex flex-wrap"> |
|
@endif |
|
|
|
@foreach($options as $k => $label) |
|
<div class="vs-checkbox-con vs-checkbox-{{ $style }}" style="margin-right: {{ $right }}"> |
|
<input {!! in_array($k, $disabled) ? 'disabled' : '' !!} value="{{$k}}" {!! $attributes !!} {!! (in_array($k, $checked)) ? 'checked' : '' !!}> |
|
<span class="vs-checkbox vs-checkbox-{{ $size }}"> |
|
<span class="vs-checkbox--check"> |
|
<i class="vs-icon feather icon-check"></i> |
|
</span> |
|
</span> |
|
@if($label !== null && $label !== '') |
|
<span>{!! $label !!}</span> |
|
@endif |
|
</div> |
|
@endforeach |
|
|
|
@if($inline) |
|
</div> |
|
@endif |