Index: src/bp-templates/bp-nouveau/includes/template-tags.php
===================================================================
--- src/bp-templates/bp-nouveau/includes/template-tags.php	(revision 11763)
+++ src/bp-templates/bp-nouveau/includes/template-tags.php	(working copy)
@@ -739,6 +739,7 @@
 		}
 
 	} elseif ( ! empty( $bp_nouveau->object_nav ) ) {
+
 		$bp_nouveau->displayed_nav = $bp_nouveau->object_nav;
 
 		/**
@@ -751,6 +752,7 @@
 		 * @param array $n   The arguments of the Navigation loop.
 		 */
 		$nav = apply_filters( 'bp_nouveau_get_nav', $nav, $n );
+
 	}
 
 	$bp_nouveau->sorted_nav = array_values( $nav );
@@ -2138,14 +2140,18 @@
 			$class = ' class="' . esc_attr( join( ' ', array_map( 'sanitize_html_class', $classes ) ) ) . '"';
 		}
 
-		// Do not fire the do_action to display errors for the private radio.
+		// Do not run function to display errors for the private radio.
 		if ( 'private' !== $value ) {
+
 			/**
-			 * Fires and displays any member registration field errors.
+			 * Fetch & display any BP member registration field errors.
 			 *
-			 * @since 1.1.0 (BuddyPress)
+			 * Passes BP signup errors to Nouveau's template function to
+			 * render suitable markup for error string.
 			 */
-			do_action( "bp_{$name}_errors" );
+				if( isset( buddypress()->signup->errors[$name] ) ) {
+				nouveau_error_template( buddypress()->signup->errors[$name], 'error' );
+			}
 		}
 
 		// Set the input.
@@ -2231,3 +2237,33 @@
 		do_action( $submit_data['after'] );
 	}
 }
+
+/**
+ * Display supplemental error or feedback messages
+ *
+ * This template handles in page error or feedback messages e.g signup fields
+ * 'Username exists' type registration fields error notice.
+ *
+ * @param  string $string required: the message to display.
+ * @param  string $type optional: the type of error message e.g 'error'.
+ *
+ * @todo Could this requirement to handle additional messages be better served by
+ *       passing strings into the main Nouveau feedback messages array to be rendered
+ *       by the main template include for notices.
+ *
+ * @since 1.0.0
+ */
+function nouveau_error_template( $string = '', $type = '' ) {
+
+	if ( ! $string )
+		return;
+	?>
+
+	<div class="bp-messages bp-feedback <?php echo esc_attr( $type ); ?>">
+		<span class="bp-icon" aria-hidden="true"></span>
+		<p><?php echo esc_html( $string ); ?></p>
+	</div>
+
+	<?php
+	return;
+}
