diff --git a/api/Models/Contact.cs b/api/Models/Contact.cs index 01e8710..5014188 100644 --- a/api/Models/Contact.cs +++ b/api/Models/Contact.cs @@ -8,10 +8,11 @@ public class Contact [Required] [MinLength(3)] - + [Display(Name = "Last Name")] public string lastName { get; set; } [Required] + [Display(Name = "First Name")] public string firstName { get; set; } public string phone { get; set; } diff --git a/client-web/components/ContactForm.vue b/client-web/components/ContactForm.vue index 06275ab..28118fb 100644 --- a/client-web/components/ContactForm.vue +++ b/client-web/components/ContactForm.vue @@ -7,12 +7,12 @@