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.