I think you have a great freedom to organize your views according to your needs.
I tried several ways like for example : all admin views in an admin folder, all member views in a member folder, ... this is quite good if the admin never needs to access the member folder ... but its not a good way.
The better way I have found is to organize my views by model.
@aurelianspodarec I tend to follow a very “resource” heavy approach to routing, controllers, views, etc.
So for say, a Post model, I’ll have a PostController with the standard resource actions (index, create, store, etc). I’ll then have corresponding views for the actions that need them: