{{-- Success Message --}} @if($showSuccessMessage)

{{ __('Message sent') }}

{{ __('We received your message successfully and will get back to you shortly!') }}

@endif {{-- Contact Form --}}
{{-- Name Field (only shown when not authenticated) --}} @guest
{{-- Email Field (only shown when not authenticated) --}}
@endguest {{-- Subject Field (optional, shown for certain contexts) --}} @if(in_array($context, ['contact', 'report-issue']))
@endif {{-- URL Field (for error reporting only) --}} @if($context === 'report-error')

{{ __('Copy and paste the web address from your browser.') }}

@endif {{-- Message Field --}}

{{ __('Minimum 10 characters') }}

{{-- Context-specific info boxes --}} @if($context === 'delete-profile')

{{ __('Important') }}: {{ __('Profile deletion is permanent and cannot be undone. All your data will be removed from our system.') }}

@endif @if($context === 'report-error')

{{ __('Tip') }}: {{ __('Include details like what you were trying to do, what happened, and any error messages you saw.') }}

@endif
{{-- Submit Button --}}
{{ $this->submitButtonText }} {{ __('Sending...') }}