fixed the config forms not working (controler needed update)
This commit is contained in:
+6
-3
@@ -30,10 +30,13 @@ Route::group(['middleware' => 'auth'], function () {
|
||||
Route::group([
|
||||
'prefix' => 'profile',
|
||||
], function () {
|
||||
Route::get('edit', 'ProfileController@edit')->name('profile.edit');
|
||||
Route::post('edit', 'ProfileController@store')->name('profile.store');
|
||||
Route::get('edit', 'ProfileController@editProfile')->name('profile.edit');
|
||||
Route::post('edit', 'ProfileController@storeProfile')->name('profile.store');
|
||||
|
||||
Route::post('create', 'TableController@storeNew')->name('table.storeNew');
|
||||
Route::get('logins', 'ProfileController@manageOauth')->name('profile.manage-oauth');
|
||||
|
||||
Route::get('logins', 'ProfileController@editAccount')->name('account.edit');
|
||||
Route::post('logins', 'ProfileController@storeAccount')->name('account.store');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user