Default to only changing default location in bulk edit

This commit is contained in:
snipe 2018-02-02 09:42:34 -06:00
parent 08d129c2ea
commit 813106efd3

View file

@ -61,9 +61,9 @@
</div> </div>
<div class="col-sm-9"> <div class="col-sm-9">
<div class="checkbox"> <div class="checkbox">
<label for="activated"> <label for="update_real_loc">
{{ Form::radio('update_real_loc', '1', true) }} Update default location AND actual location <br> {{ Form::radio('update_real_loc', '1', Input::old('update_real_loc')) }} Update default location AND actual location <br>
{{ Form::radio('update_real_loc', '0', Input::old('activated')) }} Only update default location<br> {{ Form::radio('update_real_loc', '0', true, Input::old('update_real_loc')) }} Only update default location<br>
</label> </label>
</div> </div>