Hi , in a form I have a button to create input(text type) and user can append unlimited inputs, append fire by jQuery and that is fine in inspect, in form tag I use wire:submit.prevent and in input use wire:model.defer
I want when form is submit all of appended inputs send, I know how to solve this problem by send one request to server for each one input append by I don’t want send request for every new input
after submit, all of input send successfully but new append elements not send
please help