Skip to content

Commit 4a6347f

Browse files
authored
Merge pull request #89 from clemir/laravel5.5
Fix wrong variable name in radios-inline template
2 parents 9ae38ff + 0defc65 commit 4a6347f

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)