php - Function for resend email takes me to the home page and does nothing in the given function - Laravel

one text

Solution:

Add this on RegisterController __construct method :

$this->middleware('auth', ['except' => ['account/security/resend/email']]);

Source