basic profile edit page, not working yet

This commit is contained in:
2018-07-22 20:49:22 +02:00
parent 96efa3fa15
commit ddb885b4e2
11 changed files with 96 additions and 18 deletions
+1
View File
@@ -31,6 +31,7 @@ Route::group(['middleware' => 'auth'], function () {
'prefix' => 'user',
], function () {
Route::get('edit', 'UserController@edit')->name('user.edit');
Route::post('edit', 'UserController@store')->name('user.store');
Route::post('create', 'TableController@storeNew')->name('table.storeNew');
});
});