Trying to send emails from a Laravel application but Laravel is complaining and throwing the error exception
"message": "Route [verification.resend] not defined. (View: C:\Users\Elomena\Projects\Clients\Pramopro\resources\views\auth\verify.blade.php)", "exception": "ErrorException",
Following the laravel documentation https://laravel.com/docs/5.8/verification#verification-routing I have set up my web.php
file like this
Auth::routes(['verfiy' => true]);
Route::get('/home', 'HomeController@index')->name('home');
But I can't find any route of these routes in the route list
email/resend
email/verify
email/verify/{id}
Why am I getting this exception?
verify
misspelled. But I don't seeverification.resend
defined anywhere in your routes. - aynberSwift_TransportException
messageAuthentication required
- Menaconfig/mail.php
- aynber