<input type="text" name="test" value="<?php echo $test; ?>" />
Converts to
<input type="text" name="test" value="{{ test }} " />
Should have been
<input type="text" name="test" value="{{ test }}" />
See the space before closing brackets "{{ test }} " , It gives value a space. "{{ test }} " => "{{ test }}"
A great tool, btw 👍