They say this is part 59 of Angela credit tutorial in this video we will discuss editing and updating data in Angela. To set the expectations right, we will be updating data only on the client side. We will discuss persisting data to a database table in our upcoming videos when we implement the server-side service. Now, to support editing and updating data instead of creating a brand-new form, we are going to make use of the create employee form. Currently, we are using this form to create a new employee, but we are going to modify it to support both creating a new employee and editing an existing employee. To access the create employee component, we use the path segment "create" in the URL. However, we need to change this path to "edit/:ID" to support both creating and updating an existing employee. The "ID" is a route parameter that will determine whether we create a new employee or update an existing one. Next, we need to update the create menu item, which is located in the root component (app component). Currently, the menu item does not match the path "create" anymore since we changed it to "edit/:ID". We need to provide a value for the "ID" parameter in order to create a new employee. Let's save all our changes. Now, when we click on the create menu item, the path in the URL changes to "edit/:ID" and we have an empty form to create a new employee. Let's navigate to the list page. When we click the edit button, we want to edit the existing employee. To do this, we need to wire up a click event handler for the edit button, which is located in the display employee component. Let's name the method "editEmployee" and create it within the component class. When the edit...