| ID: | {{ $data['user']->id }} |
| Full Name: | {{ $data['user']->full_name }} |
| Title: | {{ $data['user']->title ?? 'N/A' }} |
| Company: | {{ $data['user']->company }} |
| Country: | {{ $data['user']->country ?? 'N/A' }} |
| Email: | {{ $data['user']->contact_email }} |
| Phone: | {{ $data['user']->phone_number }} |
| Status: | {{ $data['user']->active ? 'Active' : 'Inactive' }} |
| Created: | {{ $data['user']->created_at->format('Y-m-d H:i:s') }} |
| Updated: | {{ $data['user']->updated_at->format('Y-m-d H:i:s') }} |
{{ $data['user']->request_justification }}
Why are you requesting reinstatement?
@switch($data['user']->reinstatement_reason) @case('I am the owner of the content.') I am the owner of the content. @break @case('I am not the owner, but I am authorized to use the content.') I am not the owner, but I am authorized to use the content. @break @case('The complainant does not have the right to submit this request.') The complainant does not have the right to submit this request. @break @case('The way I used the content is fair use, or covered by an exception or limitation.') The way I used the content is fair use, or covered by an exception or limitation. @break @case('I never used the content.') I never used the content. @break @case('Other') Other @break @default {{ $data['user']->reinstatement_reason }} @endswitch
@endif @if($data['user']->reinstatement_details)Additional Details:
{{ $data['user']->reinstatement_details }}
@endif{{ $data['user']->cookies }}