| 123456789101112131415161718192021 | @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
 |