complete story 8.2 with qa tests

This commit is contained in:
Naser Mansour
2025-12-29 00:58:36 +02:00
parent 911624901f
commit d1016c89f8
7 changed files with 432 additions and 84 deletions
@@ -0,0 +1,29 @@
<x-mail::message>
<div dir="rtl" style="text-align: right;">
# مرحباً بك في مكتب ليبرا للمحاماة
عزيزي {{ $user->company_name ?? $user->full_name }}،
تم إنشاء حسابك بنجاح على منصة مكتب ليبرا للمحاماة.
**بيانات تسجيل الدخول:**
- **البريد الإلكتروني:** {{ $user->email }}
- **كلمة المرور:** {{ $password }}
<x-mail::button :url="$loginUrl">
تسجيل الدخول
</x-mail::button>
**يمكنك الآن الوصول إلى:**
- حجز المواعيد
- متابعة قضاياك
- عرض التحديثات
إذا كان لديك أي استفسار، لا تتردد في التواصل معنا.
مع أطيب التحيات،<br>
{{ config('app.name') }}
</div>
</x-mail::message>
@@ -0,0 +1,27 @@
<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>