@extends('appshell::layouts.public') @section('title'){{ __('Invitation to join :appname', ['appname' => $appname]) }}@stop @section('content')
@if($invitation->isStillValid())
@csrf

{{ __('Join :appname', ['appname' => $appname]) }}

{{ __('You’ve been invited to create an account and join :appname.', ['appname' => $appname]) }}
{{ __('To proceed, enter your details below.') }}


@if ($errors->has('hash'))
{{ __('The invitation code you\'re trying to use is wrong! Looks like a forged one.') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{-- This block is to trick browser's autocompletion detection which is extremely pushy --}}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@else @include('appshell::public-invitation._invalid') @endif
@endsection @push('scripts') @endpush