@php use App\Services\CompanyEmailDetails; // Ensure customer_id is available $customer_id = $customer_id ?? null; $companyDetails = CompanyEmailDetails::getCompanyEmailDetails($customer_id); // Extract variables for easier use in template $logoPath = $companyDetails['logoPath']; $companyName = $companyDetails['companyName']; $companyAddress = $companyDetails['companyAddress']; $companyCity = $companyDetails['companyCity']; $companyState = $companyDetails['companyState']; $companyPostCode = $companyDetails['companyPostCode']; $companyCountry = $companyDetails['companyCountry']; $companyPhone = $companyDetails['companyPhone']; $companyEmail = $companyDetails['companyEmail']; $fullAddress = $companyDetails['companyAddressFull']; @endphp
Your account has been created successfully
Hi {{ $name }},
Your account has been created. Please use the credentials below to log in:
Email: {{ $email }}
Password: {{ $password }}
|
|
Security NoticePlease login using these credentials and change your password immediately after first login for security purposes. Do not share your credentials with anyone. |
Welcome aboard!
{{ $companyName }} Team