@extends('layouts.onboarding', ['currentStep' => 1]) @section('title', __('Create Workspace')) @section('step-name', __('Workspace')) @section('content')
{{-- Header --}}

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

{{ __('Set up your workspace to start automating communications') }}

{{-- Form --}}
@csrf {{-- Workspace Name --}}
@error('workspace_name')

{{ $message }}

@enderror
{{-- Company Logo --}}
@error('logo')

{{ $message }}

@enderror
{{-- Industry --}}
@error('industry')

{{ $message }}

@enderror
{{-- Team Size --}}
@foreach(['1' => __('Just me'), '2-5' => __('2 - 5'), '6-20' => __('6 - 20'), '20+' => __('20+')] as $value => $label) @endforeach
@error('team_size')

{{ $message }}

@enderror
{{-- Submit --}}
@endsection