@override String? validatePassword(String? value) { if (value == null || value.isEmpty) { return options.translations.passwordEmpty; } return null; }