mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 09:42:10 +08:00
6 lines
363 B
PHP
6 lines
363 B
PHP
<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 ">@icon('check')</span>
|
|
<span class="label">{{ $label ?? '' }}</span> {{-- TODO - remove default operataor backup --}}
|
|
</label> |