How to add some textfield in form register (laravel generator infyom)?

If you want to add some custom field to your registration process because your are using official laravel auth you can add your fields in : /resources/views/auth/register.blade.php

and then you can validate and save your inputs in : /app/Http/Controllers/Auth/RegisterController.php

you don’t need to add anything to registeruser in vendor because every thing you add will change and replaced after every composer install or update.

Leave a Comment