Skip to content

Commit 0defc65

Browse files
committed
Fix wrong variable name in radios-inline template
1 parent 9ae38ff commit 0defc65

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

themes/bootstrap4/forms/radios-inline.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@php
2-
$class = 'form-check-input';
2+
$classes = 'form-check-input';
33
if ($hasErrors) {
4-
$class .= ' is-invalid';
4+
$classes .= ' is-invalid';
55
}
66
@endphp
77
@foreach($radios as $radio)

0 commit comments

Comments
 (0)