@extends('layouts.main')
@section('content')
@if (config('instance.intro_registration'))
{!! nl2br(config('instance.intro_registration')) !!}
@endif
You already have an account?
Authenticate
Register a new account
{!! Form::open(['route' => 'account.store']) !!}
Fill a username and an email address OR phone number, you will then be able to set a password to finish the registration process.
OR
{!! Form::label('phone', 'Phone number') !!}
{!! Form::text('phone', old('phone'), ['class' => 'form-control', 'placeholder' => '+123456789']) !!}
{!! NoCaptcha::renderJs() !!}
{!! NoCaptcha::display() !!}
{!! Form::submit('Register', ['class' => 'btn btn-primary btn-centered']) !!}
{!! Form::close() !!}
@endsection