@php $userName = $user->name; // User Type Labels $userTypeLabel = match($userType) { 'admin' => 'Administrator Account', 'wholesaler' => 'Wholesaler Dashboard', default => 'Seller Account', }; // User Type Descriptions $userTypeDescription = match($userType) { 'admin' => 'You have full administrative privileges to manage the entire AR Dropshipping platform, including users, orders, products, and system settings.', 'wholesaler' => 'You have access to the wholesaler dashboard to manage your product inventory, track orders, and monitor sales across the platform.', default => 'You can manage your store, products, orders, and grow your dropshipping business on AR Dropshipping.', }; // Email Title/Subject based on user type $emailTitle = match($userType) { 'admin' => 'Administrator Password Reset', 'wholesaler' => 'Wholesaler Dashboard Password Reset', default => 'Reset Your Seller Password', }; // Button Text $buttonText = match($userType) { 'admin' => 'Reset Admin Password', 'wholesaler' => 'Reset Wholesaler Password', default => 'Reset My Password', }; $supportEmail = config('mail.from.address'); $currentYear = date('Y'); @endphp
AR Dropshipping

Dear {{ $userName }},

{{ $emailTitle }}

We received a request to reset the password for your {{ $userTypeLabel }}. To proceed with resetting your password, please click the button below.

📋 Account Type: {{ $userTypeLabel }} {{ $userTypeDescription }}

Important: This link expires in 60 minutes For security reasons, this password reset link will expire in one hour. If you don't reset your password within this time, you'll need to request a new link.

🛡️ Security Notice:

If you didn't request this password reset, please ignore this email and your password will remain unchanged. However, if you're concerned about your account security, please contact our support team immediately.