@extends('layouts.app') @section('title', __('Request a financial analysis')) @section('content')
{{-- Header --}}

{{ __('Request a financial analysis') }}

{{ __('Tell us what you need. We will prepare it from the data we already have on file and send you the result.') }}

@if(session('error'))
{{ session('error') }}
@endif
@csrf {{-- Cards --}}

{{ __('What kind of analysis do you need?') }}

@foreach($catalogue as $key => $entry) @endforeach

❓ {{ __('Not sure which one? Pick "Health check" — that is a good general-purpose review.') }}

{{-- Optional period + note --}}

{{ __('Anything else?') }}

{{ __('Leave blank if you are not sure — your accountant will use the most recent suitable period.') }}

{{-- Submit --}}

{{ __('Your request goes straight to your accountant. Usually ready within 48 hours.') }}

@endsection