Initial commit

This commit is contained in:
Ronald Huynen
2026-03-23 21:37:59 +01:00
commit 2547717edb
2193 changed files with 972171 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
@php
$layout = Auth::check() ? 'app-layout' : 'guest-layout';
@endphp
<x-dynamic-component :component="$layout">
<x-slot name="header">
{{ __('Report an error') }}
</x-slot>
<div class="mx-auto max-w-7xl py-6 sm:px-6 lg:px-8">
<div class="md:grid md:grid-cols-3 md:gap-6">
{{-- Left sidebar with static content --}}
<div class="md:col-span-1">
<div class="px-3 sm:px-0">
@livewire('side-post', [
'type' => 'SiteContents\Static\ReportError' ?? null,
'sticky' => true,
'fallbackTitle' => __('Found a bug or technical issue?'),
'fallbackDescription' => __('Let us know about any errors or website issues. Thank you for your feedback!')
])
</div>
</div>
{{-- Right side with contact form --}}
<div class="mt-5 md:col-span-2 md:mt-0">
@livewire('contact-form', ['context' => 'report-error'])
</div>
</div>
</div>
</x-dynamic-component>