The resources/views directory is ignored by .gitignore, so the custom super-admin
views were not being tracked or deployed, causing 'View [super-admin.session.login] not found'
errors in production. This commit forces them to be tracked.
The published login view (resources/views/vendor/admin/sessions/login.blade.php)
was referencing 'resources/images/logo.svg', which caused a mismatch with the
Vite manifest (which has 'images/logo.svg').
Also force-added the file to git because 'resources/views/.gitignore' ignores everything.