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

Register using an email address

{!! Form::open(['route' => 'account.store.email']) !!}

Fill a username and an email address, you will then be able to set a password to finish the registration process.

{!! Form::label('username', 'SIP Username') !!}
{!! Form::text('username', old('username'), ['class' => 'form-control', 'placeholder' => 'username', 'required']) !!}
{{ $domain }}
Capital letters are not allowed

{!! Form::label('email', 'Email') !!} {!! Form::email('email', old('email'), ['class' => 'form-control', 'placeholder' => 'bob@example.net']) !!}
{!! Form::label('email_confirmation', 'Email confirmation') !!} {!! Form::email('email_confirmation', old('email_confirm'), ['class' => 'form-control', 'placeholder' => 'bob@example.net']) !!}
@if (!empty(config('app.newsletter_registration_address')))
{!! Form::checkbox('newsletter', 'true', false, ['class' => 'form-check-input', 'id' => 'newsletter']) !!}
@endif @include('parts.terms') {!! Form::submit('Register', ['class' => 'btn btn-primary btn-centered']) !!} {!! Form::close() !!} @endsection