So, I have an existing input fields for Passenger details(name, address, number, email). What I want to do is to add another passenger details input using an add button. So far here is my code for the button:
<div class="center">
<button
type="button"
class="next-button"
mat-flat-button
matTooltip="Add new passenger"
matTooltipClass="tooltipClass"
matTooltipPosition="below"
(click)=""
>
<mat-icon>add</mat-icon>
</button>
