@extends('layouts.app') @php $reg = new \App\Support\SubdomainRegistry(); $en = $reg->currentLocale() === 'en'; $lc = $en ? 'en' : 'de'; $t = fn ($de, $enT) => $en ? $enT : $de; $lbl = fn (array $o) => $en ? $o[2] : $o[1]; // [value, de, en] @endphp @section('title', $t('Ein Problem schildern — ProblemRadar', 'Report a problem — ProblemRadar')) @section('meta_description', $t('Schildere kurz ein konkretes Problem aus deinem Alltag. Anonym und freiwillig.', 'Briefly describe a specific problem from your daily life. Anonymous and voluntary.')) @section('content') @include('umfrage._shell')
{{ $t('Schnell-Eingabe', 'Quick report') }}

{{ $t('Ein Problem,', 'One problem,') }} {{ $t('das dich nervt', 'that bugs you') }}

{{ $t('Kurz und ohne langen Fragebogen. Alle Angaben sind freiwillig und anonym.', 'Short and without a long questionnaire. All details are voluntary and anonymous.') }}

@if ($errors->any()) @endif
@csrf
@php $paOther = old('problem_area') === 'andere'; @endphp
@error('problem_area')

{{ $message }}

@enderror
@error('problem_description')

{{ $message }}

@enderror

{{ $t('Bitte keine Passwörter, vollständigen Adressen, Diagnosen oder vertraulichen Firmendaten eingeben.', 'Please do not enter passwords, full addresses, diagnoses or confidential company data.') }}

@error('problem_frequency')

{{ $message }}

@enderror
{{ old('severity_score', 5) }}

{{ $t('Du kannst vollständig ohne Namen absenden. Dein Name erscheint nie in Statistiken.', 'You can submit completely without a name. Your name never appears in statistics.') }}

{{ $t('Mit dem Absenden stimmst du der anonymen, statistischen Auswertung zu. Es wird keine E-Mail-Adresse abgefragt.', 'By submitting you agree to anonymous, statistical evaluation. No email address is requested.') }}
@endsection