Laravel Back to page with old input for validation
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: For the Update Profile Page I use the route as Route::get('editdriver/{data}', 'DriverController@EditDriver'); And in the controller after validation i use, return Redirect::to('editdriver/'.$data)->withInput()->withErrors($validation->messages()); So, the url will be http://localhost/project/editdriver/1 If i empty the value which is required in the rule and press submit the form, It shows the old data with the validation message. What i need is, It should not show the old value, which is from the db. I even tried., return Redirect::back()-