If You already have got Edit User template which working with updating user fields, perhaps You will need just small portion of code...
to show current avatar:
<?php
if(function_exists('userphoto_exists')) {
if(userphoto_exists($userdata->ID)){ userphoto_thumbnail($userdata->ID);
}else{ echo get_avatar($userdata->user_email, 96); }
}
?>
and to upload or delete avatar:
<?php if($userdata->userphoto_image_file){ ?>
<input type="checkbox" name="userphoto_delete" id="userphoto_delete" /> Delete existing photo?
<?php }else{ ?>
<input type="file" id="userphoto_image_file" name="userphoto_image_file">
<?php } ?>
P.S. Hope it will help You