String? validationError(String field) { final e = errors?[field]; if (e is List && e.isNotEmpty) return e.first.toString(); return e?.toString(); }