The error 'java.util.MissingResourceException: Can't find bundle for base name 'MessagesBundle', locale en_US' says that your program is not able to access your .properties files. Seems like they are placed in the wrong folder.
To fix it, either you mention the correct location of .properties file or bring them to src folder of your project.
Whenever you are creating .properties files in Netbeans, don't create them under the main project, create them under source package of the project. This way Netbeans will itself place your .properties files in the default package and you don't have to worry about such errors.