|
87 | 87 | <div class="form-group"> |
88 | 88 | <div class="col-sm-10 col-md-offset-2"> |
89 | 89 | <label class="form-control"> |
90 | | - {{ Form::checkbox('match_firstnamelastname', '1', old('match_firstnamelastname')) }} |
| 90 | + <input type="checkbox" name="match_firstnamelastname" value="1" @checked(old('match_firstnamelastname'))> |
91 | 91 | <!-- enclosing span needed for the checkbox CSS to work properly, since there's HTML in the label text --> |
92 | 92 | <span> |
93 | 93 | {!! trans('admin/hardware/general.csv_import_match_f-l') !!} |
|
100 | 100 | <div class="form-group"> |
101 | 101 | <div class="col-sm-10 col-md-offset-2"> |
102 | 102 | <label class="form-control"> |
103 | | - {{ Form::checkbox('match_flastname', '1', old('match_flastname')) }} |
| 103 | + <input type="checkbox" name="match_flastname" value="1" @checked(old('match_flastname'))> |
104 | 104 | <!-- enclosing span needed for the checkbox CSS to work properly, since there's HTML in the label text --> |
105 | 105 | <span> |
106 | 106 | {!! trans('admin/hardware/general.csv_import_match_initial_last') !!} |
|
113 | 113 | <div class="form-group"> |
114 | 114 | <div class="col-sm-10 col-md-offset-2"> |
115 | 115 | <label class="form-control"> |
116 | | - {{ Form::checkbox('match_firstname', '1', old('match_firstname')) }} |
| 116 | + <input type="checkbox" name="match_firstname" value="1" @checked(old('match_firstname'))> |
117 | 117 | <!-- enclosing span needed for the checkbox CSS to work properly, since there's HTML in the label text --> |
118 | 118 | <span> |
119 | 119 | {!! trans('admin/hardware/general.csv_import_match_first') !!} |
|
126 | 126 | <div class="form-group"> |
127 | 127 | <div class="col-sm-10 col-md-offset-2"> |
128 | 128 | <label class="form-control"> |
129 | | - {{ Form::checkbox('match_email', '1', old('match_email')) }} |
| 129 | + <input type="checkbox" name="match_email" value="1" @checked(old('match_email'))> |
130 | 130 | <!-- enclosing span needed for the checkbox CSS to work properly, since there's HTML in the label text --> |
131 | 131 | <span> |
132 | 132 | {!! trans('admin/hardware/general.csv_import_match_email') !!} |
|
139 | 139 | <div class="form-group"> |
140 | 140 | <div class="col-sm-10 col-md-offset-2"> |
141 | 141 | <label class="form-control"> |
142 | | - {{ Form::checkbox('match_username', '1', old('match_username')) }} |
| 142 | + <input type="checkbox" name="match_username" value="1" @checked(old('match_username'))> |
143 | 143 | <!-- enclosing span needed for the checkbox CSS to work properly, since there's HTML in the label text --> |
144 | 144 | <span> |
145 | 145 | {!! trans('admin/hardware/general.csv_import_match_username') !!} |
|
0 commit comments