@extends('layouts.account')
@section('content')
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.
{!! Form::label('username', 'Username') !!}
{!! Form::text('username', old('username'), ['class' => 'form-control', 'placeholder' => 'username', 'required']) !!}
OR
{!! Form::label('phone', 'Phone number') !!}
{!! Form::text('phone', old('phone'), ['class' => 'form-control', 'placeholder' => '+123456789']) !!}
{!! Form::submit('Register', ['class' => 'btn btn-primary float-right']) !!}
{!! Form::close() !!}
@endsection