Fix checkbox for edit screen.

This commit is contained in:
James Cole 2015-04-01 09:16:51 +02:00
parent 7830a64170
commit 9b4f87d44a

View File

@ -64,7 +64,7 @@
</label> </label>
<div class="col-sm-8"> <div class="col-sm-8">
<div class="radio"><label> <div class="radio"><label>
{!! Form::checkbox('return_to_edit', '1') !!} {!! Form::checkbox('return_to_edit', '1', intval(Input::old('return_to_edit')) == 1) !!}
After updating, return here. After updating, return here.
</label> </label>
</div> </div>