├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── app ├── Actions │ └── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ └── ResetUserPassword.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── Settings │ │ │ ├── PasswordController.php │ │ │ ├── ProfileController.php │ │ │ └── TwoFactorAuthenticationController.php │ ├── Middleware │ │ ├── HandleAppearance.php │ │ └── HandleInertiaRequests.php │ └── Requests │ │ └── Settings │ │ ├── ProfileUpdateRequest.php │ │ └── TwoFactorAuthenticationRequest.php ├── Models │ └── User.php └── Providers │ ├── AppServiceProvider.php │ └── FortifyServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── fortify.php ├── inertia.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ └── 2025_08_26_100418_add_two_factor_columns_to_users_table.php └── seeders │ └── DatabaseSeeder.php ├── eslint.config.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── apple-touch-icon.png ├── favicon.ico ├── favicon.svg ├── index.php ├── logo.svg └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.tsx │ ├── components │ │ ├── alert-error.tsx │ │ ├── app-content.tsx │ │ ├── app-header.tsx │ │ ├── app-logo-icon.tsx │ │ ├── app-logo.tsx │ │ ├── app-sidebar-header.tsx │ │ ├── app-sidebar.tsx │ │ ├── appearance-tabs.tsx │ │ ├── breadcrumbs.tsx │ │ ├── delete-user.tsx │ │ ├── header-menu-button.tsx │ │ ├── heading-small.tsx │ │ ├── heading.tsx │ │ ├── nav-user.tsx │ │ ├── sidebar-menu-button.tsx │ │ ├── text-link.tsx │ │ ├── two-factor-recovery-codes.tsx │ │ ├── two-factor-setup-modal.tsx │ │ ├── user-info.tsx │ │ └── user-menu-content.tsx │ ├── hooks │ │ ├── use-appearance.tsx │ │ ├── use-clipboard.ts │ │ ├── use-initials.tsx │ │ ├── use-mobile-navigation.ts │ │ ├── use-mobile.tsx │ │ ├── use-sidebar.tsx │ │ └── use-two-factor-auth.ts │ ├── layouts │ │ ├── app-layout.tsx │ │ ├── app │ │ │ ├── app-header-layout.tsx │ │ │ └── app-sidebar-layout.tsx │ │ ├── auth-layout.tsx │ │ ├── auth │ │ │ ├── auth-card-layout.tsx │ │ │ ├── auth-simple-layout.tsx │ │ │ └── auth-split-layout.tsx │ │ └── settings │ │ │ └── layout.tsx │ ├── lib │ │ └── utils.ts │ ├── pages │ │ ├── auth │ │ │ ├── confirm-password.tsx │ │ │ ├── forgot-password.tsx │ │ │ ├── login.tsx │ │ │ ├── register.tsx │ │ │ ├── reset-password.tsx │ │ │ ├── two-factor-challenge.tsx │ │ │ └── verify-email.tsx │ │ ├── dashboard.tsx │ │ ├── settings │ │ │ ├── appearance.tsx │ │ │ ├── password.tsx │ │ │ ├── profile.tsx │ │ │ └── two-factor.tsx │ │ └── welcome.tsx │ ├── ssr.tsx │ ├── theme.ts │ └── types │ │ ├── index.d.ts │ │ └── vite-env.d.ts └── views │ └── app.blade.php ├── routes ├── console.php ├── settings.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── RegistrationTest.php │ │ ├── TwoFactorChallengeTest.php │ │ └── VerificationNotificationTest.php │ ├── DashboardTest.php │ └── Settings │ │ ├── PasswordUpdateTest.php │ │ ├── ProfileUpdateTest.php │ │ └── TwoFactorAuthenticationTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Controllers/Settings/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Controllers/Settings/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Settings/TwoFactorAuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Controllers/Settings/TwoFactorAuthenticationController.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleAppearance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Middleware/HandleAppearance.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Requests/Settings/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Requests/Settings/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Settings/TwoFactorAuthenticationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Http/Requests/Settings/TwoFactorAuthenticationRequest.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2025_08_26_100418_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/migrations/2025_08_26_100418_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/index.php -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/app.tsx -------------------------------------------------------------------------------- /resources/js/components/alert-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/alert-error.tsx -------------------------------------------------------------------------------- /resources/js/components/app-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-content.tsx -------------------------------------------------------------------------------- /resources/js/components/app-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-header.tsx -------------------------------------------------------------------------------- /resources/js/components/app-logo-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-logo-icon.tsx -------------------------------------------------------------------------------- /resources/js/components/app-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-logo.tsx -------------------------------------------------------------------------------- /resources/js/components/app-sidebar-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-sidebar-header.tsx -------------------------------------------------------------------------------- /resources/js/components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/app-sidebar.tsx -------------------------------------------------------------------------------- /resources/js/components/appearance-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/appearance-tabs.tsx -------------------------------------------------------------------------------- /resources/js/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /resources/js/components/delete-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/delete-user.tsx -------------------------------------------------------------------------------- /resources/js/components/header-menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/header-menu-button.tsx -------------------------------------------------------------------------------- /resources/js/components/heading-small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/heading-small.tsx -------------------------------------------------------------------------------- /resources/js/components/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/heading.tsx -------------------------------------------------------------------------------- /resources/js/components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/nav-user.tsx -------------------------------------------------------------------------------- /resources/js/components/sidebar-menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/sidebar-menu-button.tsx -------------------------------------------------------------------------------- /resources/js/components/text-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/text-link.tsx -------------------------------------------------------------------------------- /resources/js/components/two-factor-recovery-codes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/two-factor-recovery-codes.tsx -------------------------------------------------------------------------------- /resources/js/components/two-factor-setup-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/two-factor-setup-modal.tsx -------------------------------------------------------------------------------- /resources/js/components/user-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/user-info.tsx -------------------------------------------------------------------------------- /resources/js/components/user-menu-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/components/user-menu-content.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-appearance.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-clipboard.ts -------------------------------------------------------------------------------- /resources/js/hooks/use-initials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-initials.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-mobile-navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-mobile-navigation.ts -------------------------------------------------------------------------------- /resources/js/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-sidebar.tsx -------------------------------------------------------------------------------- /resources/js/hooks/use-two-factor-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/hooks/use-two-factor-auth.ts -------------------------------------------------------------------------------- /resources/js/layouts/app-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/app-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/app/app-header-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/app/app-header-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/app/app-sidebar-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/app/app-sidebar-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/auth-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/auth/auth-card-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/auth/auth-card-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/auth/auth-simple-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/auth/auth-simple-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/auth/auth-split-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/auth/auth-split-layout.tsx -------------------------------------------------------------------------------- /resources/js/layouts/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/layouts/settings/layout.tsx -------------------------------------------------------------------------------- /resources/js/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/lib/utils.ts -------------------------------------------------------------------------------- /resources/js/pages/auth/confirm-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/confirm-password.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/forgot-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/forgot-password.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/login.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/register.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/reset-password.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/two-factor-challenge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/two-factor-challenge.tsx -------------------------------------------------------------------------------- /resources/js/pages/auth/verify-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/auth/verify-email.tsx -------------------------------------------------------------------------------- /resources/js/pages/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/dashboard.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/settings/appearance.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/settings/password.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/settings/profile.tsx -------------------------------------------------------------------------------- /resources/js/pages/settings/two-factor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/settings/two-factor.tsx -------------------------------------------------------------------------------- /resources/js/pages/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/pages/welcome.tsx -------------------------------------------------------------------------------- /resources/js/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/ssr.tsx -------------------------------------------------------------------------------- /resources/js/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/theme.ts -------------------------------------------------------------------------------- /resources/js/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/js/types/index.d.ts -------------------------------------------------------------------------------- /resources/js/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/routes/settings.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/TwoFactorChallengeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/TwoFactorChallengeTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/VerificationNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Auth/VerificationNotificationTest.php -------------------------------------------------------------------------------- /tests/Feature/DashboardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/DashboardTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Settings/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/ProfileUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Settings/ProfileUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/TwoFactorAuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Feature/Settings/TwoFactorAuthenticationTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrum/laravel-react-mantine-starter-kit/HEAD/vite.config.ts --------------------------------------------------------------------------------