---
title: "Passwordless Sign-In with Fortify Two-Factor Support in Laravel"
url: https://daily.dev/posts/passwordless-sign-in-with-fortify-two-factor-support-in-laravel-bhlbvdjfc
source_url: https://laravel-news.com/passwordless-sign-in-with-fortify-two-factor-support-in-laravel
type: article
source: "Laravel News"
published: 2026-07-10T14:04:28.497Z
updated: 2026-08-24T07:10:55.998Z
tags: ["authentication", "php", "laravel"]
reading_time: 3
upvotes: 12
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Passwordless Sign-In with Fortify Two-Factor Support in Laravel

**[Laravel News](https://daily.dev/sources/ln)** · 3 min read · 12 upvotes · 0 comments

## Summary

Email Magic Link for Laravel is a passwordless authentication package that lets users sign in via an emailed link or one-time code. It solves the common problem of email scanners burning single-use tokens by splitting the flow: a GET request renders a confirmation page while a POST actually consumes the token. The package integrates with Laravel Fortify, routing TOTP-enabled users to the two-factor challenge before authentication rather than bypassing it. Tokens are stored as keyed HMAC-SHA256 hashes, each with its own brute-force lockout. A mint API lets developers issue links and codes for delivery over SMS or custom channels. Resend limiting uses escalating cooldowns (30s, 60s, 120s) plus a rolling hourly cap. Requires PHP 8.4 and Laravel 13; Fortify is optional.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://laravel-news.com/passwordless-sign-in-with-fortify-two-factor-support-in-laravel>

## Similar posts on daily.dev

- [Laravel Introduces First-Party Passkey Authentication Support](https://daily.dev/posts/laravel-introduces-first-party-passkey-authentication-support-cztccowtr) · Laravel News · 18 upvotes · 2 comments

---

Tags: [#authentication](https://daily.dev/tags/authentication), [#php](https://daily.dev/tags/php), [#laravel](https://daily.dev/tags/laravel)

[View this post on daily.dev](https://daily.dev/posts/passwordless-sign-in-with-fortify-two-factor-support-in-laravel-bhlbvdjfc)
