@extends('website.layouts.master') @section('head') {{ $title ?? get_platform_title() }} @stop @section('content')
@if (count($errors) > 0)
{{ trans('theme.error') }}! {{ trans('messages.input_error') }}

@endif

{{ trans('theme.register') }}

{!! Form::open(['route' => 'customer.register', 'id' => 'form', 'data-toggle' => 'validator']) !!}
{!! Form::text('name', null, ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.full_name'), 'required']) !!}
{!! Form::email('email', null, ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.valid_email'), 'required']) !!}
{!! Form::password('password', ['class' => 'form-control input-lg', 'id' => 'password', 'placeholder' => trans('theme.placeholder.password'), 'data-minlength' => '6', 'required']) !!}
{!! Form::password('password_confirmation', ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.confirm_password'), 'data-match' => '#password', 'required']) !!}
@if (is_incevio_package_loaded('zipcode')) @include('address._form') @endif
@if (config('services.recaptcha.key'))
@endif
@if (config('system_settings.ask_customer_for_email_subscription'))
@endif
{!! Form::submit(trans('theme.register'), ['class' => 'btn btn-block btn-primary']) !!}
{!! Form::close() !!} @if (config('system_settings.social_auth')) @endif {{ trans('theme.have_an_account') }}
@if (config('services.recaptcha.key')) @include('theme::scripts.recaptcha') @endif @endsection @section('script')
busy...
@stop