Add the Laravel 5.7 email verification

This commit is contained in:
Nabeel Shahzad
2018-09-09 08:48:32 -05:00
parent 99e472f99c
commit 262aad2d7a
4 changed files with 72 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ Route::group([
Route::resource('profile', 'ProfileController');
});
Auth::routes();
Auth::routes(['verify' => true]);
Route::get('/logout', 'Auth\LoginController@logout')->name('logout');
require app_path('Routes/admin.php');