@extends('layouts.auth') @section('title', __('Register')) @section('content')
@if (getThemeFromSession() == 'light') {{ __('Logo') }} @else {{ __('Logo') }} @endif
@csrf

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

@error('first_name') {{ $message }} @enderror
@error('last_name') {{ $message }} @enderror
@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
{{ __('Already have account?') }} {{ __('Login') }}
@endsection @section('script') @endsection