@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.
@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