@extends('layouts.app') @section('title', "Register") @section('content')

{{ __('Register') }}

@if(config('app.allow_regs'))
@csrf @php(Widget::setLayout(4, 6)) {!! Widget::text('name', 'Username')->required()->prepend('@') ->help('This will be part of your vanity URL; only letters, digits and some symbols are allowed. You can always change this later.') !!} {!! Widget::email('email', 'E-Mail Address')->required()->autofocus() ->help('Used to login and for password resets') !!} {!! Widget::password('password', 'Password')->required() !!} {!! Widget::password('password_confirmation', 'Confirm Password')->required() !!}
@else

Registrations are currently closed.

@endif
@endsection