You can't trust the browser to retain input information when a user uses the back button. Upload image data IS NEVER retained under any circumstances; nor can it be prefilled under any circumstances. Other than image upload, you must create a php script to recreate the user's input.
<input type=text name=business value=
<? echo $_POST['business']; ?> >
etc. and a 'make changes' button to run the script. Even if you store the upload image name you can't prefill
<input type=file name=image value=
<? echo $_POST['image']; ?> >
It just won't work.