@extends('layouts.app') @section('content')
{{ __('Register a new account') }}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(config('captcha.enabled'))
{!! Captcha::display() !!}
@endif

By signing up, you agree to our Terms of Use and Privacy Policy.

@endsection