@if (Gate::check('addTeamMember', $team)) {{ __('Add Team Member') }} {{ __('Add a new team member to your team, allowing them to collaborate with you.') }} {{ __('Added.') }}
{{ __('Please provide the email address of the person you would like to add to this team. The email address must be associated with an existing account.') }}
@if (count($this->roles) > 0) @endif
{{ __('Add') }}
@endif @if ($team->teamInvitations->isNotEmpty() && Gate::check('addTeamMember', $team))
{{ __('Pending Team Invitations') }} {{ __('These people have been invited to your team and have been sent an invitation email. They may join the team by accepting the email invitation.') }} @foreach ($team->teamInvitations as $invitation)
{{ $invitation->email }}
@if (Gate::check('removeTeamMember', $team)) @endif
@endforeach
@endif @if ($team->users->isNotEmpty())
{{ __('Team Members') }} {{ __('All of the people that are part of this team.') }} @foreach ($team->users->sortBy('name') as $user)
{{ $user->name }}
@if (Gate::check('addTeamMember', $team) && Laravel\Jetstream\Jetstream::hasRoles()) @elseif (Laravel\Jetstream\Jetstream::hasRoles()) @endif @if ($this->user->id === $user->id) @elseif (Gate::check('removeTeamMember', $team)) @endif
@endforeach
@endif {{ __('Manage Role') }} {{ __('Cancel') }} {{ __('Save') }} {{ __('Leave Team') }} {{ __('Are you sure you would like to leave this team?') }} {{ __('Cancel') }} {{ __('Leave') }} {{ __('Remove Team Member') }} {{ __('Are you sure you would like to remove this person from the team?') }} {{ __('Cancel') }} {{ __('Remove') }}