@php $__brandName = (string) \App\Models\SystemSetting::get('app_name', config('app.name', 'WaDesk')); @endphp
{{ $__brandName }}
{{ __('Step 1 of 3 / Create account') }}

{{ __('Start your') }} {{ __('workspace') }}.

  1. 1Account
  2. 2Workspace
  3. 3Plan
{{-- Social sign-in (Google / Facebook) + "or with email" divider. Renders only admin-enabled providers; nothing when none are. --}} @include('auth._social', ['compact' => true]) @if ($errors->any())
@foreach ($errors->all() as $err)
{{ $err }}
@endforeach
@endif
@csrf
@php // Pre-fill from ?ref= URL or the cookie dropped by CaptureReferral // middleware. Empty by default so the field looks clean to direct // sign-ups. $prefilledRef = strtoupper( (string) (request()->query('ref') ?: request()->cookie(\App\Http\Middleware\CaptureReferral::COOKIE_NAME) ?: old('ref') ?: ''), ); @endphp
{{-- reCAPTCHA (admin-toggled, v2 checkbox or invisible v3) --}} @include('auth._recaptcha', ['action' => 'register'])

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