@extends('email.layouts.email') @section('content')

Hello {{ $mail_body->name }},

You are receiving this email because we received a password reset request for your account.

User details:

Email: {{ $mail_body->email }}

Reset link: Click here

If you did not request a password reset, no further action is required.

Regards,
{{ get_setting('site-name') }}
@endsection @section('footer-2-user-type') @if(isset($mail_body->user_type) && $mail_body->user_type == "admin") @include('email.partials.footer-2-admin') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "event-organizer") @include('email.partials.footer-2-event-organizer') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "family-member") @include('email.partials.footer-2-family-member') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "restaurant-owner") @include('email.partials.footer-2-restaurant-owner') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "sponsor") @include('email.partials.footer-2-sponsor') @endif @endsection