diff --git a/src/components/forms/customers/CreateCustomer.tsx b/src/components/forms/customers/CreateCustomer.tsx
index 6509ad5..00444b0 100644
--- a/src/components/forms/customers/CreateCustomer.tsx
+++ b/src/components/forms/customers/CreateCustomer.tsx
@@ -170,27 +170,6 @@ const CreateCustomer = ({ defaultValues, editMode, id }: IProps) => {
{errors.phone.message}
)}
-
-
- {errors.mobile && (
-
{errors.mobile.message}
- )}
-
diff --git a/src/lib/api/types/Customers.ts b/src/lib/api/types/Customers.ts
index 02e8331..db3c7e7 100644
--- a/src/lib/api/types/Customers.ts
+++ b/src/lib/api/types/Customers.ts
@@ -56,7 +56,6 @@ const createCustomerCredentials = z.object({
full_name: z.string(),
is_primary: z.boolean(),
last_name: z.string(),
- mobile: z.string(),
phone: z.string(),
position: z.string(),
})
@@ -84,7 +83,7 @@ const createCustomerCredentials = z.object({
industry: z.string().min(2).max(100).optional(),
language: z.enum(["en", "ar", "fr", "es", "de", "zh", "ja", "ko"]).optional(),
last_name: z.string().min(2).max(50).optional(),
- mobile: z.string().min(10).max(20).optional(),
+
password: z.string().min(8).max(128),
phone: z.string().min(10).max(20).optional(),
registration_number: z.string().min(5).max(50).optional(),