@extends('boilerplate::auth.layout', ['title' => __('boilerplate::auth.register.title'), 'bodyClass' => 'hold-transition login-page']) @section('content') @component('boilerplate::auth.loginbox')

{{ __('boilerplate::auth.register.intro') }}

{!! Form::open(['route' => 'boilerplate.register', 'method' => 'post', 'autocomplete'=> 'off']) !!}
{{ Form::text('first_name', old('first_name'), ['class' => 'form-control', 'placeholder' => __('boilerplate::auth.fields.first_name'), 'required', 'autofocus']) }} {!! $errors->first('first_name','

:message

') !!}
{{ Form::text('last_name', old('last_name'), ['class' => 'form-control', 'placeholder' => __('boilerplate::auth.fields.last_name'), 'required']) }} {!! $errors->first('last_name','

:message

') !!}
{{ Form::email('email', old('email'), ['class' => 'form-control', 'placeholder' => __('boilerplate::auth.fields.email'), 'required']) }} {!! $errors->first('email','

:message

') !!}
{{ Form::password('password', ['class' => 'form-control', 'placeholder' => __('boilerplate::auth.fields.password'), 'required']) }} {!! $errors->first('password','

:message

') !!}
{{ Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => __('boilerplate::auth.fields.password_confirm'), 'required']) }} {!! $errors->first('password_confirmation','

:message

') !!}
{!! Form::close() !!} @if(!$firstUser) {{ __('boilerplate::auth.register.login_link') }}
@endif @endcomponent @endsection