tim.mcqueen OP 9 years agoLevel 2ReplyReport SpamI figured it out! (I'm rusty with Laravel) In case anyone else comes up with the same issue: spark::auth.emails.password is a view located in resources/views/vendor/spark/auth/emails/password.php The reason I was getting the error in the first place was that I hadn't configured config/mail.php properly: 'from' => ['address' => null, 'name' => null], // should be 'from' => ['address' => '[email protected]', 'name' => 'My Name'], Like Reply