@extends('admin.gdpr.index') @section('gdpr_tab_content')
@lang('crm.gdpr_right_to_data_portability')
@lang('crm.learn_more')
@include('partials.messages') {!! Form::open(['route' => ['admin.gdpr.save', $page], 'class' => '', 'id' => 'gdpr_form']) !!}
Contacts
@php $valAllowed = get_option('gdpr_contact_data_portability_allowed'); if(empty($valAllowed)) { $valAllowed = array(); } else { $valAllowed = unserialize($valAllowed); } @endphp
Leads
@php $valAllowed = get_option('gdpr_lead_data_portability_allowed'); if(empty($valAllowed)) { $valAllowed = array(); } else { $valAllowed = unserialize($valAllowed); } @endphp
@if(admin_permission('consent.settings.update'))
@endif {!! Form::close() !!}
@stop @section('styles') @stop @section('scripts') @stop