fixed customer profile redirect parameter issue

This commit is contained in:
Prashant Singh 2019-04-28 12:56:20 +05:30
parent d74cef3326
commit b0726eeefc
1 changed files with 1 additions and 1 deletions

View File

@ -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 */