@if (Gate::check('addTeamMember', $team))
{{ __('Add Team Member') }} {{__('action')}}
{{__('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
{{ __('Add') }} {{ __('Added.') }}
@endif {{-- --}} @if ($team->teamInvitations->isNotEmpty() && Gate::check('addTeamMember', $team))
{{ __('Pending Team Invitations') }} {{__('action')}} {{-- {{ __('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 {{--
--}}
{{ __('Team Owner') }} {{__('action')}}
{{ $team->owner->name }}
{{ $team->owner->name }}
act message
@if ($team->users->isNotEmpty())
{{ __('Team Members') }} {{__('action')}}
@foreach ($team->users->sortBy('name') as $user)
{{ $user->name }}
{{ $user->name }}
@if (Gate::check('updateTeamMember', $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
{{ __('foot act') }} {{ __('message.') }}
@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') }}