@if (Gate::check('addTeamMember', $team))
{{ __('Add Team Member') }} {{ __('Add a new team member to your team, allowing them to collaborate with you.') }}
{{ __('Please provide the email address of the person you would like to add to this team.') }}
@if (count($this->roles) > 0)
@foreach ($this->roles as $index => $role) @endforeach
@endif
{{ __('Added.') }} {{ __('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 }}
{{ $user->name }}
@if (Gate::check('addTeamMember', $team) && Laravel\Jetstream\Jetstream::hasRoles()) @elseif (Laravel\Jetstream\Jetstream::hasRoles())
{{ Laravel\Jetstream\Jetstream::findRole($user->membership->role)->name }}
@endif @if ($this->user->id === $user->id) @elseif (Gate::check('removeTeamMember', $team)) @endif
@endforeach
@endif {{ __('Manage Role') }}
@foreach ($this->roles as $index => $role) @endforeach
{{ __('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') }}