Major incomplete Change

This commit is contained in:
Omair Saleh
2019-02-16 06:42:42 +08:00
parent 7745b580fb
commit 02cdc30640
15 changed files with 151 additions and 72 deletions
+3 -2
View File
@@ -6,8 +6,9 @@ Route::get('/storage')->name('storage');
Route::group(['prefix' => 'auth'], function () {
Route::post('/login', 'Auth\LoginController@login')->name('auth.login');
Route::get('/registration/{hash}', 'Auth\RegisterController@showRegistrationForm')->name('auth.registration');
Route::post('/registration/create', 'Auth\RegisterController@register')->name('auth.registration.create');
Route::get('/registration/{email}/{hash}', 'Account\ShowRegistrationFormController@show')->name('auth.registration');
Route::post('/registration/create', 'Account\RegisterAccountController@register')->name('auth.registration.create');
Route::get('/logout', 'Auth\LoginController@logout')->name('auth.logout');
});