BookStack/resources/views/components/toggle-switch.blade.php

6 lines
320 B
PHP
Raw Normal View History

<label toggle-switch="{{$name}}" class="toggle-switch">
<input type="hidden" name="{{$name}}" value="{{$value?'true':'false'}}"/>
<input type="checkbox" @if($value) checked="checked" @endif>
<span class="custom-checkbox text-primary">@icon('check')</span>
<span class="label">{{ $label }}</span>
</label>