The Elixir backend framework for unparalleled productivity. Declarative tools that let you stop wasting time. Use with Phoenix LiveView or build APIs in minutes for your front-end of choice.
The Elixir backend framework for unparalleled productivity. Declarative tools that let you stop wasting time. Use with Phoenix LiveView or build APIs in minutes for your front-end of choice.
I am using forms as below:
```ex
def new(conn, _params) do
form = AshPhoenix.Form.for_create(Project.User, :new_account, api: Project.Accounts, as: "user")
render(conn, "new.html", changeset: form)...