For the following template-driven forms example, what argument can be passed to the submit method in the click event to submit the data for the form?
<form #form="ngForm">
<input type="text" ngModel="firstName" /> <input type="text" ngModel="lastName" />
<button (click)="submit()">Save</button>
</form>