Laravel Packages

Laravel Socialite Plus

Published

Socialite Plus is a Laravel 12 React and Vue starter kit package that streamlines social login for Google, Facebook, GitHub, and LinkedIn. This enables you to quickly add social logins to your application without having to manually integrate the flows between the frontend and backend.

This package relies on a middleware to handle social provider

Route::get('register', [RegisteredUserController::class, 'create'])
->middleware(HandleSocialitePlusProviders::class)
->name('register');
 
Route::get('login', [AuthenticatedSessionController::class, 'create'])
->middleware(HandleSocialitePlusProviders::class)
->name('login');

You can quickly configure, activate/deactivate social logins via this package's configuration file:

return [
'providers' => [
'github' => [
'active' => true,
'branded' => false,
'name' => 'GitHub',
'icon' => 'GithubIcon',
'client_id' => env('GITHUB_CLIENT_ID'),
'client_secret' => env('GITHUB_CLIENT_SECRET'),
'redirect' => env('GITHUB_REDIRECT'),
],
// ...
]
];

Main Features

  • Predefined Social Login Pages – Ready-to-use authentication pages built with React & Vue.
  • Seamless OAuth Integration – Supports Google, Facebook, GitHub, and LinkedIn logins.
  • Configurable Providers – Enable or disable social logins via a simple config file.
  • Customizable Button Text & Styles – Personalize login button labels and appearance.
  • Easy Setup – Quick configuration using Laravel Socialite.
  • Full Social Auth Flow – Handles login, registration, and token management.
  • Multi-Framework Support – Works with both React and Vue frontends.
  • Out-of-the-Box Functionality – Reduce development time with pre-built components

You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

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

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article