# Generic International Phone Format

Applied to phone fields for **Maids, Clients, and Contacts**.

## Required format
- 8 to 15 digits total.
- First digit must be 1–9.
- Country code must be included.
- Digits only.
- No `+` sign.
- No spaces, brackets, hyphens, or other separators.
- No specific country code is assumed.

## Examples
- `256772123456` — valid
- `254712345678` — valid
- `255712345678` — valid
- `250788123456` — valid
- `260971234567` — valid
- `+256772123456` — invalid
- `0772123456` — invalid
- `256 772 123456` — invalid
- `256-772-123456` — invalid

Validation regex: `^[1-9][0-9]{7,14}$`
