Storing user submitted forms [closed]

I think you will require to custom develop some part of it but most of it can be done with Contact Form 7 plugin.

You can create forms with upload fields very easily in Contact Form 7. And you can make it visible for loggenin users only like this.

<?php
    if ( is_user_logged_in() ) {
        echo do_shortcode('[contact-form-7 id="91" title="Form"]');
    }
?>

Although Contact Form 7 doesn’t save the submitted messages by default, but Contact Form 7 developer also created another plugin Flamingo to save entries in database. Admin can see those entries in admin panel.