Some of Laravel ‘s features include a modular packaging framework with a dedicated dependency manager, various ways of accessing relational databases, utilities that help in application deployment and maintenance.Read more about [Laravel](https://laravel.com) ![1_cPt2YI-5YxhfL3_Uhw0txA.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1599891660531/TqPNv_7Ws.png)### SocialiteA social login is a form of single sign-on using existing information from a social networking service such as Facebook, Twitter, Github or Google, to sign into a third-party application instead of creating a new account specifically for that application.With Facebook , Twitter , Google, LinkedIn, GitHub, GitLab and Bitbucket, Laravel Socialite offers an intuitive, fluent interface to OAuth authentication.
In this article, I will show you how to create a social sign up with GitHub, Gmail, Facebook and Twitter the Laravel framework.
If you are not really familiar or you haven’t used the Laravel framework before, I will advise you to learn the basics of Laravel and can at least develop an application with the Laravel framework.
Step ### Socialite Installation and ConfigurationLet us install Laravel socialiteRun the following command in the root directory of your Laravel project to add the package to your project’s dependencies: ```composer require laravel/socialite```
```‘Socialite’ => Laravel\Socialite\Facades\Socialite::class,``` In your Laravel software, Socialite is all set up and you are ready to introduce social login.