Skip to content

Commit

Permalink
Swap Form::radio in bulk model edit view
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusmoore committed Feb 5, 2025
1 parent 39ce7b7 commit fe485ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/models/bulk-edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
<div class="col-md-7 col-md-offset-3">

<label for="requestable_nochange" class="form-control">
{{ Form::radio('requestable', '', true, ['id' => 'requestable_nochange', 'aria-label'=>'requestable_nochange']) }}
<input type="radio" name="requestable" id="requestable_nochange" value="" aria-label="requestable_nochange" checked>
{{ trans('admin/hardware/general.requestable_status_warning')}}
</label>
<label for="requestable" class="form-control">
{{ Form::radio('requestable', '1', old('requestable'), ['id' => 'requestable', 'aria-label'=>'requestable']) }}
<input type="radio" name="requestable" id="requestable" value="1" aria-label="requestable">
{{ trans('admin/hardware/general.requestable')}}
</label>
<label for="not_requestable" class="form-control">
{{ Form::radio('requestable', '0', old('requestable'), ['id' => 'not_requestable','aria-label'=>'not_requestable']) }}
<input type="radio" name="requestable" id="not_requestable" value="0" aria-label="not_requestable">
{{ trans('admin/hardware/general.not_requestable')}}
</label>

Expand Down

0 comments on commit fe485ac

Please sign in to comment.