@extends('layouts.auth') @section('subheading')

{{ __('Already have an account?') }} {{ __('Sign In') }}

@endsection @section('content')
@csrf
{{ __('Welcome') }}!

{{ __('You have been invited to register as part of the following team:') }} {{ $session->sessionname }}

{{ __('Before you can start using our site, we ask you to provide your name & e-mail address.') }}
@if(session()->has('message'))
{{ session()->get('message') }}
@else
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif
@endsection