@extends('themes::default.layout') @section('content') @if(config('recaptcha.api_site_key') && config('recaptcha.api_secret_key')) @push('head') {!! htmlScriptTagJsApi() !!} @endpush @endif
@csrf
@if(config('recaptcha.api_site_key') && config('recaptcha.api_secret_key'))
{!! htmlFormSnippet() !!} @if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif @if($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@lang('Already have account?')

@endsection