@php use App\Http\Middleware\SetLocale; $locale = app()->getLocale(); $rtl = SetLocale::isRtl($locale); $platformName = config('platform.name', config('app.name')); @endphp {{ __('Book a demo') }} — {{ $platformName }} @vite(['resources/css/app.css','resources/js/app.js'])
@if($logo = config('platform.logo')) @else {{ strtoupper(substr($platformName, 0, 1)) }} @endif {{ $platformName }} {{ __('Back to home') }} @include('partials.lang-switcher')
{{ __('Live demo') }}

{{ __('Pick a time that works for you') }}

{{ __('A 30-minute walkthrough with a product specialist. We will tailor it to your data and your team.') }}

@if($errors->any())
@endif
@csrf {{-- Slot picker --}}

{{ __('Available slots') }}

@php $byDate = collect($slots)->groupBy('date'); @endphp @if($byDate->isEmpty())
{{ __('No slots are available right now. Please check back soon or contact us.') }}
@else
@foreach($byDate as $date => $items)
{{ $date }}
@foreach($items as $slot) @endforeach
@endforeach
@endif
{{-- Form --}}
{{ __('Your selected slot') }}
@include('partials.cookie-banner')