@extends('layouts.onboarding', ['currentStep' => 6]) @section('title', __('Complete')) @section('content')
{{-- Celebration --}}
{{-- Animated checkmark --}}
@if ($completedCount === 5)
@else
{{ $completedCount }}/5
@endif
{{-- Heading --}}

@if ($completedCount === 5) {{ __("You're all set!") }} @else {{ __('Almost there!') }} @endif

@if ($completedCount === 5) {{ __('Your workspace is fully configured and ready to go.') }} {{ config('app.name') }} {{ __('will start learning from your communications right away.') }} @else {{ __('You completed :count of 5 setup steps. You can finish the remaining steps anytime from your settings, or jump straight into your inbox.', ['count' => $completedCount]) }} @endif

{{-- Action Cards --}}
{{-- Go to Inbox --}}

{{ __('Go to Inbox') }}

{{ __('Start managing your emails with AI') }}

{{-- Explore Dashboard --}}

{{ __('Explore Dashboard') }}

{{ __('Discover all features at a glance') }}

{{-- Read the Docs --}}

{{ __('Read the Docs') }}

{{ __('Learn advanced features and tips') }}

{{-- Sample data notice --}}

{{ __("We've added") }} {{ __('5 sample contacts') }} {{ __('and') }} {{ __('3 quick reply templates') }} {{ __('to help you explore. You can delete them anytime.') }}

{{-- Setup Summary --}}

{{ __('Setup Summary') }}

{{ $completedCount }}/5 {{ __('completed') }}
{{-- Step 1: Workspace --}} @if ($steps['workspace'])
{{ __('Workspace created') }}
@else
{{ __('Workspace created') }}
{{ __('Complete now') }}
@endif {{-- Step 2: Email --}} @if ($steps['email'])
{{ __('Email account connected') }}
@else
{{ __('Email account connected') }}
{{ __('Complete now') }}
@endif {{-- Step 3: AI --}} @if ($steps['ai'])
{{ __('AI assistant trained') }}
@else
{{ __('AI assistant trained') }}
{{ __('Complete now') }}
@endif {{-- Step 4: Auto-reply --}} @if ($steps['auto_reply'])
{{ __('Auto-reply rules set') }}
@else
{{ __('Auto-reply rules set') }}
{{ __('Complete now') }}
@endif {{-- Step 5: Team --}} @if ($steps['team'])
{{ __('Team members invited') }}
@else
{{ __('Team members invited') }}
{{ __('Complete now') }}
@endif
@endsection