Team

Invite people to help manage this account’s hosting.

@if($canManage)

Invite a teammate

@csrf
@error('email')

{{ $message }}

@enderror

Admins can manage hosting and the team. Members can manage hosting. Invitees join by signing in with that email.

@endif

Members

  • {{ strtoupper(substr($account->name ?? $account->email, 0, 1)) }}

    {{ $account->name ?? $account->email }} (you)

    {{ $account->email }}

    Owner
  • @forelse($members as $member)
  • {{ strtoupper(substr($member->email, 0, 1)) }}

    {{ $member->member->name ?? $member->email }}

    {{ $member->email }}

    @if($member->status === 'invited') Invited @endif @if($canManage)
    @csrf @method('PATCH')
    @else {{ $member->role }} @endif
  • @empty
  • No teammates yet.
  • @endforelse