@extends('app') @section('content')
Register
@csrf @if($link)
@if($link->user) {{$link->user->name}} vous a invité à rejoindre @else Vous avez été invité à rejoindre @endif @switch($link->invitable_type ) @case('App\Models\Project') le projet {{$link->invitable->name}} @break @case('App\Models\Organisation') l'organisation {{$link->invitable->name}} @break @endswitch
@else
@if ($errors->has('organisation')) {{ $errors->first('organisation') }} @endif
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if($link && $link->to) @else @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection