{{-- Header --}}
Create your account
Start by creating your tenant and admin user
{{-- ✅ Detailed auth error banner (google errors, etc.) --}} @if ($errors->has('auth'))
{{ $errors->first('auth') }}
@endif {{-- ✅ Global errors (por si llega algo general) --}} @if ($errors->any() && !$errors->has('auth'))
Please check the form:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Google register --}}
@csrf {{-- Name --}}
{{-- Company --}}
{{-- Email --}}
{{-- Password --}}
{{-- Confirm Password --}}
{{-- Submit --}}
{{ __('Register') }}
Already have an account? Sign in
By registering, you agree to the terms of service.