# Register

Create a customer with a login.

# Endpoint

POST /register

# Fields

Name Required
name true
email true
password true
password_confirmation true
phone false

# Example

<form action="/register" method="POST">

    <input type="text" name="name" />

    <input type="email" name="email" />

    <input type="password" name="password" />

    <input type="password" name="password_confirmation" />

    // Optional
    <input type="tel" name="phone" />

    <button>
        Register
    </button>

    {{ csrf.field }}

</form>