@extends('themes.admin.'.setting('active_admin_theme').'.layouts.default') @section('content') @push('custom-css') @endpush

{{__('core.platform_settings')}}

Security Settings

×

Click on field values to edit.

Members Security

@php use Spatie\Permission\Models\Role; $groups = ''; $g = Role::get(); foreach($g as $group){ if($group->name !== setting('default_fallback_usergroups')) $groups .= $group->name.','; } @endphp {{setting("custom_registration_roles")}}
{{--

API Applications

@php $displays = ( setting("google_recaptcha") ) ? 'block' : 'none';@endphp
@php $display = ( setting("auth_google") ) ? 'block' : 'none';@endphp
@php $display = ( setting("auth_twitter") ) ? 'block' : 'none';@endphp
@php $display = ( setting("auth_facebook") ) ? 'block' : 'none';@endphp
@php $display = ( setting("auth_linkedin") ) ? 'block' : 'none';@endphp
@php $display_act = ( setting("act_active") ) ? 'block' : 'none'; @endphp
--}} @can('Super Admin')

Super Admin

@php $groups = ''; $g = Role::get(); foreach($g as $group){ $groups .= $group->name.','; } @endphp {{setting("default_website_access_groups")}}
{{--
--}} {{--
--}}
@php $warning = setting('encrypt_data') ? "If you deactivate encryption mode, sensitive data will be decrypted immediately. The system will go into the maintenance mode for the duration of an decryption process." : "When you activate encryption mode, the maintenance mode will be on and all data will be encrypted immediately. After all sensitive data has been encrypted, the maintenance mode will be turned off again unless it was activated before the operation."; @endphp

{{$warning}}

@endcan
@push('custom-js') @endpush @endsection