@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
{{ __('Tell us about your firm. You can edit anything later from Settings.') }}
@if($errors->any()){{ __('Already have an account?') }} {{ __('Sign in') }}