at a glance i would say that the problem is that you are including the PHP tags again in the $fields array. try this.
<?php $fields = array(
'author' => '<p class="comment-form-author">' . ( $req ? '<span class="required">*</span>' : '' ) . '<input class="text" id="author" name="author" type="text" value="First name"' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
'redirect_to' => '<input type="hidden" name="redirect_to" value="'.get_permalink().'"/>',
);