Viewing File: /home/ubuntu/walnutminds-ecom-backend-base/routes/web.php

<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Auth::routes();

Route::get('', function() {
    return redirect()->route('admin.login');
});

Route::controller(Auth\ForgotPasswordController::class)->group( function() {

    Route::get('reset_password', 'reset_password')->name('reset_password');

    Route::post('reset_password_update', 'reset_password_update')->name('reset_password.update');

});
Back to Directory File Manager