Skip to content

Commit

Permalink
Replacing the Name type with the Email type for Member Email input to…
Browse files Browse the repository at this point in the history
… TeamMemberManager. (#653)
  • Loading branch information
VKambulov committed Jan 26, 2021
1 parent 4c6eca0 commit c7931b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<!-- Member Email -->
<div class="col-span-6 sm:col-span-4">
<jet-label for="email" value="Email" />
<jet-input id="email" type="text" class="mt-1 block w-full" v-model="addTeamMemberForm.email" />
<jet-input id="email" type="email" class="mt-1 block w-full" v-model="addTeamMemberForm.email" />
<jet-input-error :message="addTeamMemberForm.errors.email" class="mt-2" />
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<!-- Member Email -->
<div class="col-span-6 sm:col-span-4">
<x-jet-label for="email" value="{{ __('Email') }}" />
<x-jet-input id="email" type="text" class="mt-1 block w-full" wire:model.defer="addTeamMemberForm.email" />
<x-jet-input id="email" type="email" class="mt-1 block w-full" wire:model.defer="addTeamMemberForm.email" />
<x-jet-input-error for="email" class="mt-2" />
</div>

Expand Down

0 comments on commit c7931b9

Please sign in to comment.