@extends('front.template') @section('main')

{{ trans('front/register.title') }}


{{ trans('front/register.infos') }}

{!! Form::open(['url' => 'auth/register', 'method' => 'post', 'role' => 'form']) !!}
{!! Form::control('text', 6, 'username', $errors, trans('front/register.pseudo'), null, [trans('front/register.warning'), trans('front/register.warning-name')]) !!} {!! Form::control('email', 6, 'email', $errors, trans('front/register.email')) !!}
{!! Form::control('password', 6, 'password', $errors, trans('front/register.password'), null, [trans('front/register.warning'), trans('front/register.warning-password')]) !!} {!! Form::control('password', 6, 'password_confirmation', $errors, trans('front/register.confirm-password')) !!}
{!! Form::text('address', '', ['class' => 'hpet']) !!}
{!! Form::submit(trans('front/form.send'), ['col-lg-12']) !!}
{!! Form::close() !!}
@stop @section('scripts') @stop