# Customer Details
```gherkin=
Feature: Customer details
In order to keep my details up today with Neptune Bank
As a registered user
I should be able to view and update my user details in the system
Scenario: View user details
Given I am a user registered in the system
And I have added my user details
When I click on user details
Then I will be shown mine and any other user details I am authroized to see in the system in table form
Scenario: Edit user details
Given I am a user registered in the system
And I have added my user details
When I click the "edit details"
Then I am able to edit the user details stored in my account.
And Save these edited details to the system
```