Auth Screens for Your Laravel Apps

Last updated on by

Auth Screens for Your Laravel Apps image

Managing multiple Laravel applications can be challenging, especially when it comes to modifying each app individually. For instance, if you wanted to add social authentication or change the user login process, you would find yourself changing the functionality in several places. Wouldn't it be more efficient if your authentication functionality was centralized? Imagine simply flipping a switch when you need a new feature or you need to incorporate a new social provider. That’s exactly why we created DevDojo Auth.

DevDojo Auth is a free, open-source project that provides you with customizable authentication pages for your Laravel app. It's compatible with any Laravel application (version 10.x or higher) and any of the available starter kits.

How to Install

Setting up is really simple. Once you have a fresh Laravel application ready, you can install the package using Composer:

composer require devdojo/auth

Next, you’ll want to publish the assets, configs, and more:

php artisan vendor:publish --tag=auth:assets
php artisan vendor:publish --tag=auth:config
php artisan vendor:publish --tag=auth:ci
php artisan vendor:publish --tag=auth:migrations

Lastly, you need to run the migrations, and then extend the DevDojo User model.

php artisan migrate
  • If you want to take advantage of many of the 2FA and social provider methods from your user object, you’ll need to extend the DevDojo User Model from your App\Models\User.php :
use Devdojo\Auth\Models\User as AuthUser;
 
class User extends AuthUser

That's it! You're now ready to begin onboarding users. However, if you wish to customize the pages with your own colors and logo, please continue reading.

Setup and Customizations

After installing this package, you can access a simple setup page at /auth/setup.

From this setup page, you can change the appearance, add social providers, adjust the language copy, and modify settings related to your authentication functionality.

Available Pages

This package offers many common authentication pages to help your users authenticate with your app. Plus, the user experience of these pages will maintain your professional image and encourage your users to return.

Here is the list of authentication pages you will have available in your application after installation.

  • Login
  • Register
  • Verify Email
  • Password Confirmation
  • Password Reset
  • Two Factor Challenge

You can learn more about these pages by visiting the documentation

Adding Social Authentication

Adding social authentication with this package is very simple. You simply need to obtain the CLIENT_ID and CLIENT_SECRET for each provider you wish to include. Then, go to the social providers page on the setup screen and activate the desired social providers.

Bring up your login and/or registration page and you’ll see that the social providers are locked and loaded, ready to authenticate user from their favorite social networks.

More Goodies

There are so many other features you can take advantage of with this package. One of which is the Github action workflows. You can publish CI files to your application and have them run everytime a new PR is opened. This package ships with Pest and Dusk tests to make sure your authentication is fully operational at all times ✨

Be sure to visit the Devdojo Auth official documentation to learn more.

Tony Lea photo

Hey There, My name is Tony and I'm a Laravel/PHP Developer. I love creating and learning cool new things. Be sure to checkout my site at https://devdojo.com.

Filed in:
Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

Laravel Forge logo

Laravel Forge

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Forge
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $2500/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
Larafast: Laravel SaaS Starter Kit logo

Larafast: Laravel SaaS Starter Kit

Larafast is a Laravel SaaS Starter Kit with ready-to-go features for Payments, Auth, Admin, Blog, SEO, and beautiful themes. Available with Vue and Livewire stacks.

Larafast: Laravel SaaS Starter Kit
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector
MongoDB logo

MongoDB

Get your ideas to market faster with a developer data platform built on the leading modern database. Support transactional, search, analytics, and mobile use cases while using a common query interface and the data model developers love.

MongoDB

The latest

View all →
New String Helpers and ServeCommand Improvements in Laravel 11.14 image

New String Helpers and ServeCommand Improvements in Laravel 11.14

Read article
Auth Screens for Your Laravel Apps image

Auth Screens for Your Laravel Apps

Read article
Adding Real Time Chat to Laravel Using Reverb & Vue image

Adding Real Time Chat to Laravel Using Reverb & Vue

Read article
Build Tables Based on Eloquent Models with Inertia Table image

Build Tables Based on Eloquent Models with Inertia Table

Read article
Behind the Code: A Discussion with Backend Experts including Taylor Otwell image

Behind the Code: A Discussion with Backend Experts including Taylor Otwell

Read article
Artisan `make` Commands Automatically Chop `.php` Extension in Laravel 11.12 image

Artisan `make` Commands Automatically Chop `.php` Extension in Laravel 11.12

Read article