@extends('layouts.app') @section('site_title', formatTitle([__('Authentication'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Authentication') }}

{{ __('Authentication') }}
@include('shared.message')
@csrf
@if ($errors->has('registration')) {{ $errors->first('registration') }} @endif {{ __('Enable or disable user registration on the website.') }} {{ __('When disabled, new users cannot create accounts.') }}
@if ($errors->has('registration_require_email_verification')) {{ $errors->first('registration_require_email_verification') }} @endif {{ __('Require users to verify their email address before activating their account.') }}
@if ($errors->has('login_tfa')) {{ $errors->first('login_tfa') }} @endif {{ __('Enable or disable the two-factor authentication (2FA) system on the website.') }} {{ __('When disabled, users will not be prompted for 2FA during login, regardless of their personal settings.') }}
@if ($errors->has('registration_tfa')) {{ $errors->first('registration_tfa') }} @endif {{ __('The default two-factor authentication (2FA) status for new users upon registration.') }} {{ __('Users can later change this in their account settings.') }}
{{ __(':service integration can be configured by following the official documentation.', ['service' => 'Google']) }}
@if ($errors->has('auth_google')) {{ $errors->first('auth_google') }} @endif {{ __('Enable or disable authentication through :service.', ['service' => 'Google']) }} {{ __('When enabled, users can register or log in using their :service account.', ['service' => 'Google']) }}
@if ($errors->has('auth_google_client_id')) {{ $errors->first('auth_google_client_id') }} @endif
@if ($errors->has('auth_google_client_secret')) {{ $errors->first('auth_google_client_secret') }} @endif
{{ __('Copy') }}
{{ __(':service integration can be configured by following the official documentation.', ['service' => 'Microsoft']) }}
@if ($errors->has('auth_microsoft')) {{ $errors->first('auth_microsoft') }} @endif {{ __('Enable or disable authentication through :service.', ['service' => 'Microsoft']) }} {{ __('When enabled, users can register or log in using their :service account.', ['service' => 'Microsoft']) }}
@if ($errors->has('auth_microsoft_client_id')) {{ $errors->first('auth_microsoft_client_id') }} @endif
@if ($errors->has('auth_microsoft_client_secret')) {{ $errors->first('auth_microsoft_client_secret') }} @endif
{{ __('Copy') }}
{{ __(':service integration can be configured by following the official documentation.', ['service' => 'Apple']) }}
@if ($errors->has('auth_apple')) {{ $errors->first('auth_apple') }} @endif {{ __('Enable or disable authentication through :service.', ['service' => 'Apple']) }} {{ __('When enabled, users can register or log in using their :service account.', ['service' => 'Apple']) }}
@if ($errors->has('auth_apple_client_id')) {{ $errors->first('auth_apple_client_id') }} @endif
@if ($errors->has('auth_apple_team_id')) {{ $errors->first('auth_apple_team_id') }} @endif
@if ($errors->has('auth_apple_key_id')) {{ $errors->first('auth_apple_key_id') }} @endif
@if ($errors->has('auth_apple_private_key')) {{ $errors->first('auth_apple_private_key') }} @endif
{{ __('Copy') }}
@endsection @include('shared.sidebars.admin')