]> BookStack Code Mirror - bookstack/blob - resources/views/form/checkbox.blade.php
Spanish translation
[bookstack] / resources / views / form / checkbox.blade.php
1
2 <label>
3     <input value="true" id="{{$name}}" type="checkbox" name="{{$name}}"
4            @if($errors->has($name)) class="neg" @endif
5            @if(old($name) || (!old() && isset($model) && $model->$name)) checked="checked" @endif
6     >
7     {{ $label }}
8 </label>
9
10 @if($errors->has($name))
11     <div class="text-neg text-small">{{ $errors->first($name) }}</div>
12 @endif