• Fortify
  • Fortify
  • Fortify
  • Fortify
  • Fortify

Fortify

Plugin information

by wy choong

Authentication Admin panel

This package provides the UI for using Fortify in Filament Admin Panel

Support

#fortify on Discord

Views

4091

License

MIT

Documentation

Features

  • Authentication
  • Password Reset
  • Registration
  • Email Verification
  • Two Factor Authentication
  • Password Confirmation Route Protection

Installation

You can install the package via composer:

composer require wychoong/filament-fortify

You can intallation command and run the migrations with:

php artisan filament-fortify:install
php artisan migrate

The installation command does few things to speed up the installation process:

- Publish Fortify files
- Publish Fortify migration
- Add FortifyServiceProvider to config/app.php

As this package is only providing UI for Fortify, kindly refer Laravel Fortify documentation to setup, eg: User model.

Optional

You can publish filament-fortify config file with:

php artisan vendor:publish --tag="filament-fortify-config"

Optionally, you can publish the views using

php artisan vendor:publish --tag="filament-fortify-views"

Usage

This package respect the features configured in config/fortify.php, refer Laravel Fortify to enable/disable features.

Visit Github for more info