I really appreciate it. I've been searching for email verification for many days, but now I found the right solution. Keep up the good work!
@errorsolutioncode10 ай бұрын
Thank you :)
@ALISAAD-kl7gn Жыл бұрын
You are creative man, keep it up 😃
@errorsolutioncode Жыл бұрын
Thanks, you too!
@LokeshYadav-jw9ob6 ай бұрын
sir very nice tutorial , clearly explained this video thank you
@errorsolutioncode6 ай бұрын
You are most welcome
@LokeshYadav-jw9ob6 ай бұрын
@@errorsolutioncode sir laravel add to cart tutorial ??
@rizanraafi Жыл бұрын
Thank you! very clearly explained
@errorsolutioncode Жыл бұрын
You are welcome!
@etc3625 Жыл бұрын
Fantastic
@errorsolutioncode Жыл бұрын
Thanks
@abdelhadi26529 ай бұрын
Thank You So Much
@errorsolutioncode9 ай бұрын
You're most welcome
@ماجدهاحمد-ظ7ذ Жыл бұрын
thank you
@errorsolutioncode Жыл бұрын
You're welcome
@gonzalopenaherrera32423 ай бұрын
... how could I implement this with a real email server? ...
@errorsolutioncode3 ай бұрын
Yes
@MohitKumar-jg4ry10 ай бұрын
the mail not working till now, I watched other videos but not solve pls give me details about the condition you were talking about last comment🙏
@errorsolutioncode10 ай бұрын
okay bro
@Abdullah-gw6uv10 ай бұрын
create the route in web.php like this Route::post('forgotpassword',[AuthController::class,'forgot_password'])->name("forgot_password.post"); and also pass action=" " in the form like this then your email is working he make a mistake but how its routes working i dont understand without the route email will never run
@luisfernandomorales94056 ай бұрын
@@Abdullah-gw6uv The secure route in action is the following: action="{{ route('forgot.password.post', ['token' => $user->remember_token]) }}" you need to pass the user token in the route.