@extends('layouts.nova') @section('content')

Login

Access your Skinbase account.

@if($errors->has('oauth'))
{{ $errors->first('oauth') }}
@endif @if($errors->has('bot'))
{{ $errors->first('bot') }}
@endif @include('auth.partials.social-login')
@csrf @php $captchaProvider = $captcha['provider'] ?? 'turnstile'; $captchaSiteKey = $captcha['siteKey'] ?? ''; @endphp
@if(($requiresCaptcha ?? false) && $captchaSiteKey !== '') @if($captchaProvider === 'recaptcha')
@elseif($captchaProvider === 'hcaptcha')
@else
@endif @endif
@if (Route::has('password.request')) Forgot password? @endif

Don’t have an account? Create one

@if(($requiresCaptcha ?? false) && (($captcha['siteKey'] ?? '') !== '') && (($captcha['scriptUrl'] ?? '') !== '')) @endif @include('partials.bot-fingerprint-script') @endsection