feat: quick add with email (#5182)

This commit is contained in:
Michael Bianco
2022-01-01 11:45:34 -07:00
committed by GitHub
parent 60cf3345bd
commit 80001fc1df
3 changed files with 25 additions and 6 deletions
+2 -1
View File
@@ -183,7 +183,8 @@ class ContactsController extends Controller
->withDefaultGender(auth()->user()->account->default_gender_id)
->withFormNameOrder(FormHelper::getNameOrderForForms(auth()->user()))
->withFirstName($request->input('first_name'))
->withLastName($request->input('last_name'));
->withLastName($request->input('last_name'))
->withEmail($request->input('email'));
}
/**