Hi Clay,
Just to clarify that the attribute post_type
needs to add to the shortcode frontend submission, not the shortcode frontend dashboard.
[mb_frontend_form id="meta-box-id" post_fields="title,content" post_type="individual"]
The page ID is required to add to the frontend dashboard shortcode, it will get the shortcode info from the frontend submission page to show the corresponding post type.
You can use the PHP code to pass the page ID dynamically.
$form = '[mb_frontend_dashboard edit_page="$page_id"';
echo do_shortcode( $form );