In which file in the Laravel folder can I find the email address confirmation email with the verification link ?
You're welcome! If you have any more questions or if there's anything else I can help you with, feel free to ask.
Hi,
It's not recommended to modify files within the vendor directory, as this directory contains the dependencies installed via Composer, and changes might be overridden when you update your dependencies.
If you have a specific requirement to customize the email verification view, you should either callback or extend from that class.
Thanks
Ok thanks
Thank you finally I found the file it is located on this path : starterkit/vendor/laravel/framework/src/illuminate/auth/Notifications/
Hi Moussa,
Could you please clarify your question?
If you're looking for the email verification view in Laravel, you can find it in the resources/views/pages/auth/verify-email.blade.php.
Thanks