@include('partials.navbar') Registration Workspace Active Token: {{ $resumeCode }} Role Profile: {{ strtoupper($registration->data_handler_role ?? 'HANDLER') }} Verification Basic Details 3Personal Data 4Sensitive Data 5Transfer 6Measures 7Turnover 8Overview 9Credentials @csrf PERSONAL DATA CLASSIFICATION Add Category @php $personalDataMatrix = []; if (isset($registration) && $registration->personal_data_matrix) { // If already auto-cast to an array by Eloquent, use it directly. Otherwise, manually decode. $personalDataMatrix = is_array($registration->personal_data_matrix) ? $registration->personal_data_matrix : json_decode($registration->personal_data_matrix, true); } @endphp @if(is_array($personalDataMatrix) && count($personalDataMatrix) > 0) @foreach($personalDataMatrix as $index => $item) Category of Data Subjects * Description of Personal Data * {{ $item['description'] ?? '' }} Purpose of Processing * {{ $item['purpose'] ?? '' }} Delete Category @endforeach @else Category of Data Subjects * Description of Personal Data * Purpose of Processing * Delete Category @endif Back to Step 2 Save & Continue
Active Token: {{ $resumeCode }}