@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title'=>__('Privacy & Data Settings')])
@include('flash::message')
@include('includes.user_dashboard_menu')

{{__('Privacy & Data Settings')}}

{{__('Privacy Consent')}}

{{__('Your consent status for data processing and privacy policy.')}}

@if($user->gdpr_consent_date)
{{__('Consent given on')}} {{Carbon\Carbon::parse($user->gdpr_consent_date)->format('M d, Y H:i')}}
@else
{{__('Consent not recorded')}}
@endif

{{__('Export Your Data')}}

{{__('You have the right to receive a copy of your personal data. Request an export and we will prepare a downloadable file containing all your information.')}}

@csrf

{{__('Delete Your Account')}}

{{__('You have the right to request deletion of your account and all associated data. This action is irreversible.')}}

@endsection