Team

Team

Invite people to help manage this account’s QR codes.

@if($canManage)

Invite a teammate

@csrf
@error('email')

{{ $message }}

@enderror

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

@endif

Members

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

    {{ $account->name ?? $account->email }} @if($isOwner)(you)@endif

    {{ $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')
    @csrf @method('DELETE')
    @else {{ $member->role }} @endif
  • @empty
  • No teammates yet.
  • @endforelse