@extends('layouts.guest') @section('title', __('Create your workspace')) @php $countries = config('countries.list', []); $currencies = config('countries.currencies', []); $sizes = config('countries.sizes', []); $sectorGroups = config('countries.sector_groups', []); $defaultCountry = config('countries.default_country'); $defaultCurrency = config('countries.default_currency'); // Country → default currency map (drives auto-pick on change). $currencyByCountry = []; foreach ($countries as $code => $cfg) { $currencyByCountry[$code] = $cfg['currency'] ?? $defaultCurrency; } $countriesJson = json_encode($countries, JSON_UNESCAPED_UNICODE); @endphp @section('content') {{-- Register page is wider than other auth screens — uses a roomier max-width so the company sections breathe on desktop. --}} @push('head') @endpush

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

{{ __('Tell us about your firm. You can edit anything later from Settings.') }}

@if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
@csrf {{-- ─── 1. Your account ─────────────────────────────────────── --}}
1

{{ __('Your account') }}

{{ __('10+ characters, mixed case, numbers & symbols.') }}

{{-- ─── 2. Your firm ────────────────────────────────────────── --}}
2

{{ __('Your firm') }}

{{-- ─── 3. Official identifiers ─────────────────────────────── --}}
3

{{ __('Official identifiers') }}

{{ __('(adapts to your country)') }}

{{-- ─── 4. Address ──────────────────────────────────────────── --}}
4

{{ __('Address') }}

{{-- Terms + submit --}}

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

@endsection