This question seems too simple to be asked here I think but I'm new to Laravel and I could not find a way to get any success feedback when an email has successfully been sent. I had some successes with getting an error messages by doing this:
@if($errors->any())
<p class="feedback-error">{{ $errors->all()[0] }}</p>
@endif
PS: I want to get the message for when an email has been sent to reset their password.