@extends('layouts.onboarding', ['currentStep' => 3]) @section('title', __('Step 3')) @section('content')
{{-- Progress Bar --}} {{-- Header --}}

{{ __('Train your AI assistant') }}

{{ __('Give :app knowledge about your business so it can reply accurately', ['app' => config('app.name')]) }}

@csrf {{-- Knowledge Sources --}} {{-- Section 1: Upload Documents --}}

{{ __('Click to upload') }} {{ __('or drag and drop') }}

{{ __('Accepted: PDF, DOCX, DOC, TXT, CSV -- max 10MB per file') }}

{{-- File validation error --}} {{-- Upload progress indicator --}} {{-- File list --}}
{{-- Section 2: Scrape Website --}}
{{-- Section 3: Q&A Pairs --}}
{{-- AI Personality --}}
@php $personalities = [ 'professional' => ['icon' => 'M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z', 'label' => __('Professional'), 'desc' => __('Formal & polished')], 'friendly' => ['icon' => 'M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z', 'label' => __('Friendly'), 'desc' => __('Warm & approachable')], 'casual' => ['icon' => 'M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z', 'label' => __('Casual'), 'desc' => __('Relaxed & natural')], 'sales' => ['icon' => 'M13 7h8m0 0v8m0-8l-8 8-4-4-6 6', 'label' => __('Sales'), 'desc' => __('Persuasive & driven')], 'support' => ['icon' => 'M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z', 'label' => __('Support'), 'desc' => __('Helpful & empathetic')], 'custom' => ['icon' => 'M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z', 'label' => __('Custom'), 'desc' => __('Write your own')], ]; @endphp @foreach($personalities as $value => $data) @endforeach
{{-- Custom Personality Textarea --}} {{-- Default Language --}}
{{-- Actions --}}
@endsection