mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Merge pull request #16180 from marcusmoore/chore/migrate-form-radio-helpers-bulk-models
Replaced calls to Form::radio helper on bulk asset model edit page
This commit is contained in:
commit
1f6428ee1c
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue