@php $field = 'mt-1.5 block w-full min-h-11 rounded-xl border-0 bg-secondary/40 px-3 py-2.5 text-sm text-foreground shadow-sm ring-1 ring-inset ring-border focus:ring-2 focus:ring-ring'; $card = 'rounded-2xl border border-border/60 bg-card/80 p-6 shadow-sm ring-1 ring-black/[0.04] backdrop-blur-sm dark:bg-card/90 dark:ring-white/[0.06] sm:p-8'; $sectionIcon = 'flex h-10 w-10 shrink-0 items-center justify-center rounded-xl bg-secondary/80 text-foreground ring-1 ring-border/60'; @endphp

{{ __('Workspace') }}

{{ __('Settings') }}

{{ $workspace->name }}

{{ __('Back to board') }}
@if($canUpdateWorkspace)

{{ __('Workspace name') }}

{{ __('Shown in the app header and invites.') }}

@error('workspaceName')

{{ $message }}

@enderror
@endif @if($canInvite)

{{ __('Invite member') }}

{{ __('They must already have an account using the same email they registered with.') }}

@if($inviteMessage)
{{ $inviteMessage }}
@endif @if($inviteError) @endif
@error('inviteEmail')

{{ $message }}

@enderror
@if($inviteRole === 'assistant')
@endif @if($inviteRole === 'agency')
@endif
@endif

{{ __('Members') }}

{{ __('People with access to this workspace.') }}

@error('member')

{{ $message }}

@enderror
@foreach($members as $m) @php $prof = $profilesById->get($m->user_id); @endphp

{{ $prof?->display_name ?? $m->user->name }}

{{ $m->user->email }}

{{ $m->role->value }}
@if($canManageMembers && (int) $m->user_id !== (int) auth()->id() && (int) $m->user_id !== (int) $workspace->owner_id) @endif
@endforeach