module Phlex::Rails::Helpers::FormWith

def form_with(*args, **kwargs, &block)

def form_with(*args, **kwargs, &block)
	@_target << @_view_context.form_with(*args, **kwargs) { |form|
		capture do
			yield(
				BufferedFormWith.new(form, buffer: @_target)
			)
		end
	}
end