diff --git a/app/views/employers/show.html.erb b/app/views/employers/show.html.erb
index 0a6d880..ac5010a 100644
--- a/app/views/employers/show.html.erb
+++ b/app/views/employers/show.html.erb
@@ -34,7 +34,7 @@
Date of Birth |
- <%= @employer.dob %> |
+ <%= @employer.dob.strftime('%B %d, %Y') if @employer.dob.present? %> |
SSN |
diff --git a/app/views/workers/show.html.erb b/app/views/workers/show.html.erb
index afaa274..001a8f0 100644
--- a/app/views/workers/show.html.erb
+++ b/app/views/workers/show.html.erb
@@ -16,7 +16,7 @@
Address |
<%= @worker.address_line_1 %><%= ', ' + @worker.address_line_2 unless @worker.address_line_2.blank? %>
-
+
<%= "#{@worker.city}, #{@worker.state} #{@worker.zip}" %>
|
@@ -30,7 +30,7 @@
DOB |
- <%= @worker.dob %> |
+ <%= @worker.dob.strftime('%B %d, %Y') if @worker.dob.present? %> |
SSN |