I've been trying to implement multiple authentication login and registration is working fine in both group but verification route is not working after user registration. Is there any way possible to do this ?
This is my route
Route::group([
'prefix' => 'users',
'namespace' => 'Users',
'as' => 'user.'
],function(){
Auth::routes(['verify' => true]);
Route::get('/','Main@index');
Route::get('/dashboard','Main@index')->name('dashboard');
});
Route::group([
'prefix' => 'admins',
'namespace' => 'Admins',
'as' => 'admin.'
],function(){
Auth::routes();
Route::get('/','Main@index');
Route::get('/dashboard','Main@index')->name('dashboard');
});