Skip to content

Commit c157f41

Browse files
committed
Replace Form::radio in location partial
1 parent 9357eca commit c157f41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/partials/forms/edit/location-select.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
<div class="form-group">
4141
<div class="col-md-9 col-md-offset-3">
4242
<label class="form-control">
43-
{{ Form::radio('update_default_location', '1', old('update_default_location'), ['checked'=> 'checked', 'aria-label'=>'update_default_location']) }}
43+
<input name="update_default_location" type="radio" value="1" checked="checked" aria-label="update_default_location" />
4444
{{ trans('admin/hardware/form.asset_location') }}
4545
</label>
4646
<label class="form-control">
47-
{{ Form::radio('update_default_location', '0', old('update_default_location'), ['aria-label'=>'update_default_location']) }}
47+
<input name="update_default_location" type="radio" value="0" aria-label="update_default_location" />
4848
{{ trans('admin/hardware/form.asset_location_update_default_current') }}
4949
</label>
5050
</div>

0 commit comments

Comments
 (0)