@extends('layouts.guest') @section('title', __('Accept invitation')) @section('content')
@if($state === 'expired')

{{ __('This invitation has expired') }}

{{ __('Ask your workspace admin to send you a new one.') }}

{{ __('Go to sign in') }}
@elseif($state === 'accepted')

{{ __('Invitation already accepted') }}

{{ __('You can sign in with your password.') }}

{{ __('Sign in') }}
@else

{{ __('Accept invitation') }}

{{ __('You were invited to join') }} {{ $invitation->tenant->name }}.

@if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
@csrf

{{ __('10+ chars, mixed case, numbers & symbols.') }}

@endif
@endsection