What is the best way to separate the create form and the edit form in a resource
Is this a good solution ?
2 Replies
In what ways do you want them to be different?
Would it make sense to use one form but simply hide certain elements using
->visibleOn('create')
(or 'edit') or ->hiddenOn('create')
/'edit'.
... or use ->visible(closure)
/->hidden(closure)
?this is an old question but here is the solution: move the form from the resource to its corresponding
create
or edit
page, super easy