The front panel is what the user sees, so it should be simple, clean, and logically organized. It should not require a pilot's licese to operate.
It seems to me that you start with the diagram, then randomly do "create control/create indicator" on anything. This is backwards.
Try starting with the design of the front panel, place the indicators and controls as desired, use a tab control to logically group items by function and to hide items that are not suitable for the current state. Create clusters for controls that belong together.
Only once this is done start to wire up the terminals and add code.
Again, the block diagram should have a clean purposeful layout. Since this is a user interface VI, you probably want to go with a state machine usi
ng a while loop and an event structure. Everything that does not need user interaction should go in subVIs. Liberally add comments to each code section.
Have a look at the
LabVIEW Developer Guidelines, especially the style guide in chapter 6.
Trust me, the learning curve will be fast and once you get the hang of it, it'll be hard to go back to line based code. Users with considerable programming backgrounds in other programming languages often approach LabVIEW with a few misconceptions that cause a lot of unecessary code. If you want, you can post your "artwork" and we can possibly point out some things that could be dramatically simplified. Remember, you are allowed to make every mistake once, they are required for sucessful learning.
😉