@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. The email address must be associated with an existing account.') }}
@if (count($this->roles) > 0)
@foreach ($this->roles as $index => $role)
{{ $role->name }}
@if ($addTeamMemberForm['role'] == $role->key) @endif
{{ $role->description }}
@endforeach
@endif
{{ __('Added.') }} {{ __('Add') }}
@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)
{{ $role->name }}
@if ($currentRole == $role->key) @endif
{{ $role->description }}
@endforeach
{{ __('Nevermind') }} {{ __('Save') }}
{{ __('Leave Team') }} {{ __('Are you sure you would like to leave this team?') }} {{ __('Nevermind') }} {{ __('Leave') }} {{ __('Remove Team Member') }} {{ __('Are you sure you would like to remove this person from the team?') }} {{ __('Nevermind') }} {{ __('Remove') }}