@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 {{ __('I agree to the') }} {{ __('Terms & Conditions') }} @error('terms') {{ $message }} @enderror {{ __('Register') }} @endsection @section('script') @endsection