From b0726eeefc5275b053a8a514997ee39bf4df0797 Mon Sep 17 00:00:00 2001 From: Prashant Singh Date: Sun, 28 Apr 2019 12:56:20 +0530 Subject: [PATCH] fixed customer profile redirect parameter issue --- packages/Webkul/Shop/src/Http/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Webkul/Shop/src/Http/routes.php b/packages/Webkul/Shop/src/Http/routes.php index c4ccd395b..1991e0ed7 100755 --- a/packages/Webkul/Shop/src/Http/routes.php +++ b/packages/Webkul/Shop/src/Http/routes.php @@ -196,7 +196,7 @@ Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function //Customer Profile Edit Form Store Route::post('profile/edit', 'Webkul\Customer\Http\Controllers\CustomerController@update')->defaults('_config', [ - 'redirect' => 'shop::customers.account.index' + 'redirect' => 'customer.profile.index' ])->name('customer.profile.edit'); /* Profile Routes Ends Here */