@extends('backend.layout.master-tailwind') @section('title', __('Enable Disable User Identity Verification')) @section('admin_styles') @endsection @section('content')

{{ __('User Identity Verification') }}

{{ __('Require users to complete identity verification') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to allow users to skip identity verification.') }}
@php $idVerVal = get_static_option('user_identity_verify_enable_disable') ?? ''; $idVerLbl = $idVerVal === 'enable' ? __('Enable') : ($idVerVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection