Komentáře •

  • @kidsvideosak3411
    @kidsvideosak3411 Před 8 měsíci +1

    best

  • @nikhilverma7045
    @nikhilverma7045 Před 2 lety +1

    Making amazing Laravel videos sir keep making and please complete the series of laravel thank you….

  • @roshannafiz8698
    @roshannafiz8698 Před rokem

    What is your .env file mail setup?

    • @WebMentorDev
      @WebMentorDev Před rokem +1

      it is difficult to explain here.
      MAIL_MAILER=smtp
      MAIL_HOST=host
      MAIL_PORT=portnumber
      MAIL_USERNAME=loginemailaddrewss
      MAIL_PASSWORD="password"
      MAIL_ENCRYPTION=ssl
      MAIL_FROM_ADDRESS="email being used to sende mails"
      MAIL_FROM_NAME="${APP_NAME}"
      if you are testing email system, then use MailTrap

  • @KotdwarRider
    @KotdwarRider Před rokem

    wosrt not fully explained

    • @WebMentorDev
      @WebMentorDev Před rokem

      GET Request are pages where you fill the form.
      1. Request Password Reset Email
      2. Click Link In Email. Link in the Email contains information about token and email (you want to reset the password of)
      3. Token is stored hidden on in the input field so it doesn't confuse the user.
      4. User type email and new password then complete the process.
      That's it