I'm just beginning to learn how to use Laravel and I'm running into a problem with returning multiple variables.
In my controller I have it set up as:
return view('pages.about')->withFullName($fullname)->withEmail($email);
Then in my view I have:
<p>Email me at {{$email}}</p>
The $fullname variable passes without any problem but when I have the additional variable $email in there it's giving me a parse error.