49 lines
726 B
Plaintext
49 lines
726 B
Plaintext
<h1>Employer Details</h1>
|
|
|
|
<p>
|
|
<strong>Name:</strong>
|
|
<%= @employer.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Address:</strong>
|
|
<%= @employer.address %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Phone:</strong>
|
|
<%= @employer.phone %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Email:</strong>
|
|
<%= @employer.email %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>TIN:</strong>
|
|
<%= @employer.tin %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Date of Birth:</strong>
|
|
<%= @employer.dob %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>SSN:</strong>
|
|
<%= @employer.ssn %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Gender:</strong>
|
|
<%= @employer.gender %>
|
|
</p>
|
|
|
|
<%= link_to 'Edit', edit_employer_path(@employer) %> |
|
|
<%= link_to 'Back to List', employers_path %>
|
|
<%= link_to 'Destroy', @employer, method: :delete, data: { confirm: 'Are you sure?', turbo: 'false' } %>
|
|
|
|
|
|
|