['required', 'string', 'max:255'], 'email' => ['nullable', 'string', 'email', 'max:255', Rule::unique('customers')->ignore($this->route()->customer->id)], 'password' => ['nullable', 'string', 'min:6', 'confirmed'], 'mobile' => ['required', 'string', 'min:10',Rule::unique('customers')->ignore($this->route()->customer->id)], 'postal_code' => ['required', 'string', 'min:10'], 'address' => ['required', 'string', 'min:10'], 'state' => ['required', 'numeric'], 'city' => ['required', 'numeric'], ]; } }