We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b4168 commit 745fff6Copy full SHA for 745fff6
src/resources/views/crud/fields/radio.blade.php
@@ -38,7 +38,13 @@ class="form-check-input"
38
@else
39
40
<div class="form-check">
41
- <input class="form-check-input" type="radio" id="{{$field['name']}}_{{$optionPointer}}" name="{{$field['name']}}" value="{{$value}}" {{$optionValue == $value ? ' checked': ''}}>
+ <input type="radio"
42
+ class="form-check-input"
43
+ id="{{$field['name']}}_{{$optionPointer}}"
44
+ name="{{$field['name']}}"
45
+ value="{{$value}}"
46
+ @include('crud::inc.field_attributes')
47
+ {{$optionValue == $value ? ' checked': ''}}>
48
<label class="form-check-label font-weight-normal" for="{{$field['name']}}_{{$optionPointer}}">{!! $label !!}</label>
49
</div>
50
0 commit comments