1. You add a file to a core component: Why do you not add a view to com_jsn?
/public_html/templates/ufds/html/com_users/profile/easyprofile.php
2. Now you have added a file to a core component - please check for a theme override:
$app = JFactory::getApplication();
$template = JPATH_SITE . '/templates/' . $app->getTemplate() . '/html/com_users/profile/edit.php';
if( JFile::exists($template) ) {
include( $template );
} else {
include( JPATH_SITE . '/components/com_users/views/profile/tmpl/edit.php');
}