How to send data colected with Laravel Livewire to Fortify?
问题 I'm not familiar with Vue.js at all, so found a good replacement using Livewire. The challenge that I've got to solve is to have a user friendly registration on my website using Fortify + Livewire. The registration process is a multistep one and depends on the choices that the user makes it will load the relative fields. So far I set up the Fortify views by adding in the FortifyServiceProvider.php file the following code: Fortify::loginView(function () { return view('auth.login'); }); Fortify