{{ __('auth_ui.register_title') }} 🚀

{{ __('auth_ui.register_subtitle') }}

@if($hasError('name') || $nameAvailable === false)
{{ $getError('name') ?: 'This username is already taken.' }}
@elseif($nameAvailable && strlen($name) >= 3)
This username is available!
@endif
@if($hasError('username') || $usernameAvailable === false)
{{ $getError('username') ?: 'This username is already taken.' }}
@elseif($usernameAvailable && strlen($username) >= 3)
This username is available!
@endif
@if($hasError('email') || $emailAvailable === false)
{{ $getError('email') ?: 'This email is already registered.' }}
@elseif($emailAvailable && filter_var($email, FILTER_VALIDATE_EMAIL))
This email is available!
@endif
@if($hasError('telefono'))
{{ $getError('telefono') }}
@endif
@if($hasError('password'))
{{ $getError('password') }}
@endif
@if(strlen($password) > 0)
{{ $passwordFeedback }}
@endif
@if($hasError('password_confirmation'))
{{ $getError('password_confirmation') }}
@endif
@if($hasError('terms'))
{{ $getError('terms') }}
@endif

{{ __('auth_ui.already_have_account') }} {{ __('auth_ui.login_here') }}

or