mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-23 14:34:02 +00:00
25 lines
733 B
PHP
25 lines
733 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
|
=======
|
|
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');
|
|
Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset');
|
|
>>>>>>> 737c7da54f7707363ff7c7fe2f6b0d68f2f484f1
|