28 lines
531 B
PHP
28 lines
531 B
PHP
<x-mail::message>
|
|
# Welcome to Libra Law Firm
|
|
|
|
Dear {{ $user->company_name ?? $user->full_name }},
|
|
|
|
Your account has been successfully created on the Libra Law Firm platform.
|
|
|
|
**Login Credentials:**
|
|
|
|
- **Email:** {{ $user->email }}
|
|
- **Password:** {{ $password }}
|
|
|
|
<x-mail::button :url="$loginUrl">
|
|
Login Now
|
|
</x-mail::button>
|
|
|
|
**You can now access:**
|
|
|
|
- Book consultations
|
|
- Track your cases
|
|
- View updates
|
|
|
|
If you have any questions, please don't hesitate to contact us.
|
|
|
|
Regards,<br>
|
|
{{ config('app.name') }}
|
|
</x-mail::message>
|