@extends('layouts.app') @section('content')

A Photo Sharing Experience For Everyone

{{ __('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('pixelfed.recaptcha'))
{!! Recaptcha::render() !!}
@endif

By signing up, you agree to our Terms, Data Policy and Cookies Policy.

@endsection