Update: 2026-05-25 21:44:11

This commit is contained in:
Hamza-Ayed
2026-05-25 21:44:11 +03:00
parent 2f1a6f9c85
commit 5f62455113
10 changed files with 327 additions and 254 deletions

View File

@@ -36,29 +36,29 @@ class AddTenantView extends StatelessWidget {
const SizedBox(height: 16),
_buildTextField(
controller: controller.emailController,
label: 'البريد الإلكتروني للمكتب',
label: 'البريد الإلكتروني للعمل',
icon: Icons.email,
keyboardType: TextInputType.emailAddress,
isDark: isDark,
),
const SizedBox(height: 24),
const Text(
'بيانات مدير المكتب',
'بيانات مدير المكتب المسؤول',
style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
),
const SizedBox(height: 16),
_buildTextField(
controller: controller.managerNameController,
label: 'اسم المدير',
label: 'اسم المدير الكامل',
icon: Icons.person,
isDark: isDark,
),
const SizedBox(height: 16),
_buildTextField(
controller: controller.managerEmailController,
label: 'البريد الإلكتروني للمدير',
icon: Icons.alternate_email,
keyboardType: TextInputType.emailAddress,
controller: controller.phoneController,
label: 'رقم هاتف المدير (لتسجيل الدخول OTP)',
icon: Icons.phone,
keyboardType: TextInputType.phone,
isDark: isDark,
),
const SizedBox(height: 16),