<%= @title %>

<.form let={f} for={@changeset} id="context-form" phx-target={@myself} phx-change="validate" phx-submit="save"> <%= label f, :title %> <%= text_input f, :title %> <%= error_tag f, :title %> <%= label f, :content %> <%= textarea f, :content %> <%= error_tag f, :content %> <%= label f, :tag %> <%= multiple_select f, :tag, ["Option 1": "option1", "Option 2": "option2"] %> <%= error_tag f, :tag %> <%= label f, :visibility %> <%= select f, :visibility, Ecto.Enum.values(Memex.Contexts.Context, :visibility), prompt: "Choose a value" %> <%= error_tag f, :visibility %>
<%= submit "Save", phx_disable_with: "Saving..." %>