How to add dynamic dropdown list column on Laravel 5.3 registration?

If I understood you correctly, you need to override showRegistrationForm() method. So, copy-paste this method from vendor to RegisterController and work with it there:

public function showRegistrationForm()
{
    // Do something here.

    return view('auth.register');
}

Also, do not make any changes in vendor directory.

Leave a Comment