i used all the requests but am getting error like this
Failed to authenticate on SMTP server with username "[email protected]" using 3 possible authenticators. Authenticator LOGIN returned Expected response code 235 but got code "535", with message "535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials o66sm7898816qka.60 - gsmtp ". Authenticator PLAIN returned Expected response code 235 but got code "535", with message "535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials o66sm7898816qka.60 - gsmtp ". Authenticator XOAUTH2 returned Expected response code 250 but got code "535", with message "535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials o66sm7898816qka.60 - gsmtp ".
@snapey by set google email account its done but the problem i have now is how can i edit the page that is sent to gmail may be reset password page or verification page then i put on my own designs
i want also to edit password reset link am given cause my users can't know that they should change from the url
http://localhost:/password/reset/ce1486d6f899b766d8d04622a42671cd41cba7dc6b9174cb47b4a55eb5a48626?email=vainqueurniyo%40gmail.com
to this
http://localhost:8000/password/reset/ce1486d6f899b766d8d04622a42671cd41cba7dc6b9174cb47b4a55eb5a48626?email=vainqueurniyo%40gmail.com
another question what is the difference betwen
@csrf
and
<input type="hidden" name="token" value="{{ $token }}">
No practical difference. @csrf was added as a blade shortcut in later versions, so depending on the age of any tutorial you are looking at you may see the earlier format.
am told to paste the url below so which will i move and paste my url
@isset($actionText)
@slot('subcopy')
@lang(
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n". is it here
'into your web browser: [:actionURL](:actionURL)',
[
'actionText' => $actionText,
'actionURL' => $actionUrl,
]
)
@endslot
@endisset
@endcomponent
i changed APP_URL and it worked but why does it remove the style of my web it shows html style only with no designs i tried also look if its the problem of my folders but its not the problem why does it change
by the way when i view it without the email link am given i looks well as always but if i click the reset link am given it comes with no styles
Probably because in your layout files you are not making the CSS file path absolute. Instead it is relative to the current URL
You need to see this by opening the network Dev tools in the browser and refreshing the page, you will probably see it failing to load the CSS file because it is trying to get it from the wrong place.