The address edit page allows the user to edit their address information for use with checkout.
POST /address/create
GET /address/edit/[ADDRESS ID]
POST /address/edit/[ADDRESS ID]
File: address_edit.liquid
<h1 class="pagetitle">{{ "address.edit.editing_your_address" | trans }}</h1> <form method="post" action="/address/edit/{{ address.id }}"> {{ token_tag }} {% include 'address_form' with address %} <p><input type="submit" name="submit" value="{{ "buttons.save_changes" | trans }}" /></p> </form>
<h1 class="pagetitle">{{ "address.edit.editing_your_address" | trans }}</h1> <form method="post" action="/address/edit/{{ address.id }}"> {{ token_tag }} {% include 'address_form' with address %} <p><input type="submit" name="submit" value="{{ "buttons.save_changes" | trans }}" /></p> </form>