@extends('layouts.app') @section('title', getSetting('APPLICATION_NAME') . ' | ' . __('Register')) @section('content')

{{ __('Create an account') }}

{{ __('Already have an account?') }}
{{ __('Login') }}
{{ __('Register') }}
@csrf
@error('username') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if (getSetting('CAPTCHA_REGISTER_PAGE') == 'enabled')
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@error('terms') {{ $message }} @enderror
@endsection @section('script') @endsection