Table of Contents
Add a column 'username' inside 'users' table
Open your phpmyadmin , go to your Laravel database's table 'user' . Then add the column 'username'. I have choosen 'username' for a custom field example, you can choose anyone.Add form field 'username' as shown below inside register.blade.php
Of course, Laravel won’t automatically know what to do with this field, therefore you’ll need to make one last change.
Open the RegisterController.php controller found in app/Http/Controllers/Auth, and modify the validator method to look like this: Next, scroll down and modify the create method to look like this: Save these changes, and only one step remains. Open the app/User.php file and add the username field to the $fillable property like so: 

