In Laravel, if validation failed, it goes back to a same form page. How to repopulate a checkbox to ticked or unticked?
By default, it should be unticked when loading on the page for the first time.
{{ Form::checkbox('custom_address', false,
Input::old('custom_address'), array('class' => 'test')); }}