Skip to content

Laravel login template with integrated Bootstrap and social login feature

Notifications You must be signed in to change notification settings

jd-patel/laravel-social-login

Repository files navigation

Laravel Login with Google, Facebook and Twitter

Demo with Laravel 8x

Simpely download the repository to your local machine.

Create Database laravel-login and import Database.

Create your Client ID & Client Secret using below URL.

Change the Client_ID, Client_Secret, Redirect URL in the "config/Service.php" file


'google' => [
    'client_id' => 'GOOGLE_CLIENT_ID',
    'client_secret' => 'GOOGLE_CLIENT_SECRET',
    'redirect' => 'CALLBACK_URL_GOOGLE', //https://domainname.com/auth/google/callback
],

'facebook' => [
    'client_id' => 'FACEBOOK_CLIENT_ID',
    'client_secret' => 'FACEBOOK_CLIENT_SECRET',
    'redirect' => 'CALLBACK_URL_FACEBOOK', //https://domainname.com/auth/facebook/callback
],

'twitter' => [
    'client_id' => 'TWITTER_CLIENT_ID',
    'client_secret' => 'TWITTER_CLIENT_SECRET',
    'redirect' => 'CALLBACK_URL_TWITTER', //https://domainname.com/auth/twitter/callback
],

Happy Coding!!!

About

Laravel login template with integrated Bootstrap and social login feature

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published