Hi @zafar11, it is possible, and you'll have to edit the "new_request_page.hbs" file. For example, let's say we want to place the email field before custom field 360023185291. In that case, we'll add a script like the following:
<script> var mail = $(".form-field.request_anonymous_requester_email"); var date = $(".form-field.request_custom_fields_360023185291"); $(mail).prependTo(date); </script>