Radio button tweaks

This commit is contained in:
snipe 2020-04-01 06:56:27 -07:00
parent 4688d62b9f
commit 56c2740b68

View file

@ -56,8 +56,9 @@
<!-- Update actual location --> <!-- Update actual location -->
<div class="form-group"> <div class="form-group">
<div class="col-sm-9 col-sm-offset-3 "> <div class="col-md-3"></div>
<div class="checkbox"> <div class="col-md-9">
<label for="update_real_loc"> <label for="update_real_loc">
{{ Form::radio('update_real_loc', '1', Input::old('update_real_loc'), ['class'=>'minimal', 'aria-label'=>'update_real_loc']) }} {{ Form::radio('update_real_loc', '1', Input::old('update_real_loc'), ['class'=>'minimal', 'aria-label'=>'update_real_loc']) }}
Update default location AND actual location Update default location AND actual location
@ -67,7 +68,7 @@
{{ Form::radio('update_real_loc', '0', Input::old('update_real_loc'), ['class'=>'minimal', 'aria-label'=>'update_default_loc']) }} {{ Form::radio('update_real_loc', '0', Input::old('update_real_loc'), ['class'=>'minimal', 'aria-label'=>'update_default_loc']) }}
Update only default location Update only default location
</label> </label>
</div>
</div> </div>
</div> <!--/form-group--> </div> <!--/form-group-->
@ -117,18 +118,18 @@
<!-- Requestable --> <!-- Requestable -->
<div class="form-group {{ $errors->has('requestable') ? ' has-error' : '' }}"> <div class="form-group {{ $errors->has('requestable') ? ' has-error' : '' }}">
<label for="requestable" class="col-md-3 control-label"> <div class="control-label col-md-3">
{{ trans('admin/hardware/form.requestable') }} <strong>{{ trans('admin/hardware/form.requestable') }}</strong>
</label> </div>
<div class="col-md-7 col-md-offset-3"> <div class="col-md-7">
<label class="radio"> <label class="radio">
<input type="radio" name="requestable" value="1"> Yes <input type="radio" class="minimal" name="requestable" value="1"> Yes
</label> </label>
<label class="radio"> <label class="radio">
<input type="radio" name="requestable" value="0"> No <input type="radio" class="minimal" name="requestable" value="0"> No
</label> </label>
<label class="radio"> <label class="radio">
<input type="radio" name="requestable" value=""> Do Not Change <input type="radio" class="minimal" name="requestable" value=""> Do Not Change
</label> </label>
</div> </div>
</div> </div>