PHPackages                             c6digital/filament-passwordless-login - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. c6digital/filament-passwordless-login

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

c6digital/filament-passwordless-login
=====================================

Simple passwordless login for Filament.

v1.0.0(7mo ago)81.5k↓50%3[2 PRs](https://github.com/c6digital/filament-passwordless-login/pulls)MITPHPPHP ^8.1CI passing

Since Nov 15Pushed 2mo agoCompare

[ Source](https://github.com/c6digital/filament-passwordless-login)[ Packagist](https://packagist.org/packages/c6digital/filament-passwordless-login)[ Docs](https://github.com/c6digital/filament-passwordless-login)[ RSS](/packages/c6digital-filament-passwordless-login/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (15)Versions (7)Used By (0)

Simple passwordless login for Filament.
=======================================

[](#simple-passwordless-login-for-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a2430efd2862a275bcf6ea64e914025dcc0c9311e56a8afc60803e3083ff05a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63366469676974616c2f66696c616d656e742d70617373776f72646c6573732d6c6f67696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/c6digital/filament-passwordless-login)[![GitHub Tests Action Status](https://camo.githubusercontent.com/bd6358a264134b4db6846d3a1bd28e83a31600053acd6daa0f2bad3f0f748179/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f63366469676974616c2f66696c616d656e742d70617373776f72646c6573732d6c6f67696e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/c6digital/filament-passwordless-login/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/167c240306e2df6f33665eabae0f44aa8e9c68fb26179f9908e8f6dc0a9c6d73/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f63366469676974616c2f66696c616d656e742d70617373776f72646c6573732d6c6f67696e2f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/c6digital/filament-passwordless-login/actions/workflows/fix-php-code-styling.yml)[![Total Downloads](https://camo.githubusercontent.com/da7a68be6117ef9e724cde3622823280f8aa029a625dc73673efe395cf2d4bbe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63366469676974616c2f66696c616d656e742d70617373776f72646c6573732d6c6f67696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/c6digital/filament-passwordless-login)

This package provides a new Login component that replaces the traditional email and password form with a simple passwordless login form.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require c6digital/filament-passwordless-login
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-passwordless-login-views"
```

Usage
-----

[](#usage)

Register the plugin on your Filament panel.

```
use C6Digital\PasswordlessLogin\PasswordlessLoginPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->//...
        ->plugin(PasswordlessLoginPlugin::make());
}
```

This will automatically register the new login page, overwriting the one provided by Filament. It also registers the necessary routes to authenticate users using a magic login link.

### Using password in local environments

[](#using-password-in-local-environments)

Sending login links emails during development can be difficult. If you are still storing passwords for your users, you can enable password authentication in `local` environments.

```
PasswordlessLoginPlugin::make()
    ->allowPasswordInLocalEnvironment()
```

Now a "Password" field will be displayed on the Login page when `APP_ENV=local`.

### Action

[](#action)

This package also provides an `Action` that can be used inside of Filament tables.

```
use C6Digital\PasswordlessLogin\Actions\LoginLinkAction;

$table
    ->actions([
        LoginLinkAction::make(),
    ]);
```

### Command

[](#command)

If you need to generate a login link without accessing the site, you can use the `passwordless:link` command.

```
php artisan passwordless:link {email}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Ryan Chandler](https://github.com/ryangjchandler)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance77

Regular maintenance activity

Popularity27

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~170 days

Total

5

Last Release

227d ago

Major Versions

v0.3.0 → v1.0.02025-09-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/568d485d441c691b0358b9091254a6a671fef8f76b73f28af1180ad568d142b2?d=identicon)[ryangjchandler](/maintainers/ryangjchandler)

---

Top Contributors

[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (27 commits)")[![c6andy](https://avatars.githubusercontent.com/u/213634680?v=4)](https://github.com/c6andy "c6andy (10 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")

---

Tags

laravelfilamentc6digitalfilament-passwordless-login

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/c6digital-filament-passwordless-login/health.svg)

```
[![Health](https://phpackages.com/badges/c6digital-filament-passwordless-login/health.svg)](https://phpackages.com/packages/c6digital-filament-passwordless-login)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[jeffgreco13/filament-breezy

A custom package for Filament with login flow, profile and teams support.

1.0k1.7M41](/packages/jeffgreco13-filament-breezy)[dutchcodingcompany/filament-socialite

Social login for Filament through Laravel Socialite

213914.9k9](/packages/dutchcodingcompany-filament-socialite)[andrewdwallo/filament-companies

A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.

34450.0k2](/packages/andrewdwallo-filament-companies)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

81158.7k4](/packages/stephenjude-filament-two-factor-authentication)[chiiya/filament-access-control

Admin user, role and permission management for Laravel Filament

21847.2k](/packages/chiiya-filament-access-control)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
