Skip to content

Commit 9357eca

Browse files
committed
Replace Form::radio on asset checkin page
1 parent 40c65a0 commit 9357eca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/hardware/checkin.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@
106106
<div class="form-group">
107107
<div class="col-md-9 col-md-offset-3">
108108
<label class="form-control">
109-
{{ Form::radio('update_default_location', '1', old('update_default_location'), ['checked'=> 'checked', 'aria-label'=>'update_default_location']) }}
109+
<input name="update_default_location" type="radio" value="1" checked="checked" aria-label="update_default_location" />
110110
{{ trans('admin/hardware/form.asset_location') }}
111111
</label>
112112
<label class="form-control">
113-
{{ Form::radio('update_default_location', '0', old('update_default_location'), ['aria-label'=>'update_default_location']) }}
113+
<input name="update_default_location" type="radio" value="0" aria-label="update_default_location" />
114114
{{ trans('admin/hardware/form.asset_location_update_default_current') }}
115115
</label>
116116
</div>

0 commit comments

Comments
 (0)