fixed the config forms not working (controler needed update)

This commit is contained in:
2018-07-26 22:24:39 +02:00
parent 2e075799f2
commit a71fed254a
7 changed files with 63 additions and 24 deletions
+6 -3
View File
@@ -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');
});
});