name('login'); Route::get('account/registration', function () { return view('pages.accounts.registration'); })->name('registration'); Route::get('account/registration-step-2', function () { return view('pages.accounts.registration_step_2'); })->name('registration-step-2'); Route::get('account/password/reset/{token}', function ($token){ return view('pages.accounts.authentication.reset_password',['token' => $token]); })->name('account.password.reset'); route::get('dashboard/', function (){ return redirect()->route('registration-step-2'); })->name('dashboard');