@php
    $customCaptcha = loadCustomCaptcha();
    $googleCaptcha = loadReCaptcha();
@endphp
@props(['isAdmin' => false])
@if ($googleCaptcha)
    
        @php echo $googleCaptcha @endphp
    
@endif
@if ($customCaptcha)
    @if ($isAdmin)
        
            @php echo $customCaptcha @endphp
        
        
    @else
        
    @endif
@endif
@if ($googleCaptcha)
    @push('script')
        
    @endpush
@endif