@php $appName = $invitation->tenant->getAppName(); $workspaceName = $invitation->tenant->name; $roleKey = 'invitation_accept.role_' . strtolower($invitation->role); $roleLabel = \Illuminate\Support\Facades\Lang::has($roleKey) ? __($roleKey) : ucfirst($invitation->role); $expires = $invitation->expires_at->diffForHumans(); @endphp {{ __('auth_pages.invitation_accept_title', ['app' => $appName]) }} {{-- Inter font self-hosted under public/vendor/ — no external CDN load. --}}
{{ $appName }} {{ $appName }}
{{ __('auth_pages.invitation_pill') }}

{!! __('auth_pages.invitation_youre_invited', ['workspace' => ''.e($workspaceName).'']) !!}

{!! __('auth_pages.invitation_role_on_app', ['role' => ''.e($roleLabel).'', 'app' => ''.e($appName).'']) !!}

{{ __('auth_pages.create_your_account') }}

@if ($errors->any())
{{ __('auth_pages.fix_the_following') }}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! $recaptchaScript ?? '' !!}
@csrf @if($recaptchaActive ?? false) @endif
{{ __('auth_pages.password_strength_hint') }}
{{ __('auth_pages.invitation_expires_at', ['when' => $expires]) }}