Code4fun wrote a tutorial on how to create a registration system using Ajax and Laravel 5.3

ajax registration laravel

In this tutorial we gonna show you how to do Ajax register and login with Laravel 5.3 We'll start by creating new Laravel project.

laravel new ajaxlogin

After the project is created, create new database called ajaxlogin and update .ENV file like so

DB_DATABASE=ajaxlogin
DB_USERNAME=root
DB_PASSWORD=

Next run make:auth which will scaffold controllers and views necessery for login and registration.

php artisan make:auth