laravel 5.2 pass data to registration view
问题 I'm using laravel 5.2 and I wrote this command to automatically add routes and views of authentication: php artisan make:auth Now I want to pass data to registration view but I don't find where to do that, I assume that it should be with a code like that: Route::get('register', 'Auth\AuthController@showRegistrationForm'); But in routes.php I have this: Route::auth(); And in Auth\AuthController there are only two methods: validator create 回答1: register user class is in this file \vendor