# Login
A customer can login with their email and password.
# Endpoint
POST
/login
# Fields
Name | Required |
---|---|
true | |
password | true |
# Example
<form action="/login" method="POST">
<input type="email" name="email" />
<input type="password" name="password" />
<button>Login</button>
{{ csrf.field }}
</form>