@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']) !!}
{!! $errors->first('first_name','
') !!}
{!! $errors->first('last_name','
') !!}
{!! $errors->first('email','
') !!}
{!! $errors->first('password','
') !!}
{!! $errors->first('password_confirmation','
') !!}
{!! Form::close() !!}
@if(!$firstUser)
{{ __('boilerplate::auth.register.login_link') }}
@endif
@endcomponent
@endsection