{{ __('Create your account') }}

{{ __('Start automating your communication with AI') }}

@csrf {{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Password with strength indicator --}}

@error('password')

{{ $message }}

@enderror
{{-- Confirm password --}}
{{-- Terms --}}
@error('terms')

{{ $message }}

@enderror {{-- Submit --}} @php // Mirror the login page gating — master switch + per-provider // toggles. Keeps the register form in sync with /login so // disabling GitHub in admin hides it on BOTH places. $__socialEnabled = \App\Models\SystemSetting::get('social_login_enabled', 'true') === 'true'; $__googleEnabled = \App\Models\SystemSetting::get('integration_google_enabled', 'false') === 'true'; $__microsoftEnabled = \App\Models\SystemSetting::get('integration_microsoft_enabled', 'false') === 'true'; $__githubEnabled = \App\Models\SystemSetting::get('integration_github_enabled', 'false') === 'true'; $__facebookEnabled = \App\Models\SystemSetting::get('integration_facebook_enabled', 'false') === 'true'; $__anySocial = $__socialEnabled && ($__googleEnabled || $__microsoftEnabled || $__githubEnabled || $__facebookEnabled); @endphp @if($__anySocial) {{-- Divider --}}
{{ __('Or sign up with') }}
@if($__googleEnabled || $__microsoftEnabled) {{-- Social — 1 or 2 in a row depending on which providers are enabled --}}
@if($__googleEnabled) {{ __('Google') }} @endif @if($__microsoftEnabled) {{ __('Microsoft') }} @endif
@endif @if($__githubEnabled) {{ __('Continue with GitHub') }} @endif @if($__facebookEnabled) {{ __('Continue with Facebook') }} @endif @endif {{-- Login link --}}

{{ __('Already have an account?') }} {{ __('Log in') }}