├── public
├── favicon.ico
├── robots.txt
├── mix-manifest.json
├── .htaccess
├── web.config
├── index.php
└── js
│ └── app.js.LICENSE.txt
├── database
├── .gitignore
├── seeders
│ ├── DatabaseSeeder.php
│ └── UserTableSeeder.php
├── migrations
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ ├── 2021_05_10_015649_create_sessions_table.php
│ ├── 2019_12_14_000001_create_personal_access_tokens_table.php
│ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ └── 2021_05_19_015833_create_permission_tables.php
└── factories
│ └── UserFactory.php
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── resources
├── markdown
│ ├── policy.md
│ └── terms.md
├── js
│ ├── Jetstream
│ │ ├── SectionBorder.vue
│ │ ├── InputError.vue
│ │ ├── Label.vue
│ │ ├── Button.vue
│ │ ├── DangerButton.vue
│ │ ├── SecondaryButton.vue
│ │ ├── AuthenticationCard.vue
│ │ ├── Input.vue
│ │ ├── DropdownLink.vue
│ │ ├── SectionTitle.vue
│ │ ├── ApplicationMark.vue
│ │ ├── NavLink.vue
│ │ ├── ActionMessage.vue
│ │ ├── AuthenticationCardLogo.vue
│ │ ├── Dropdown.vue
│ │ ├── ValidationErrors.vue
│ │ ├── Checkbox.vue
│ │ ├── ActionSection.vue
│ │ ├── Modal.vue
│ │ ├── DialogModal.vue
│ │ ├── ResponsiveNavLink.vue
│ │ ├── FormSection.vue
│ │ ├── ConfirmationModal.vue
│ │ ├── Banner.vue
│ │ ├── ApplicationLogo.vue
│ │ └── ConfirmsPassword.vue
│ ├── Pages
│ │ ├── Dashboard.vue
│ │ ├── TermsOfService.vue
│ │ ├── PrivacyPolicy.vue
│ │ ├── API
│ │ │ └── Index.vue
│ │ ├── Profile
│ │ │ ├── Show.vue
│ │ │ ├── UpdatePasswordForm.vue
│ │ │ ├── DeleteUserForm.vue
│ │ │ └── UpdateProfileInformationForm.vue
│ │ └── Auth
│ │ │ ├── ConfirmPassword.vue
│ │ │ ├── VerifyEmail.vue
│ │ │ ├── ForgotPassword.vue
│ │ │ ├── ResetPassword.vue
│ │ │ ├── Login.vue
│ │ │ ├── TwoFactorChallenge.vue
│ │ │ └── Register.vue
│ ├── Components
│ │ ├── Footer.vue
│ │ └── Pagination.vue
│ ├── app.js
│ ├── bootstrap.js
│ └── Layouts
│ │ └── AdminLayout.vue
├── sass
│ ├── _variables.scss
│ ├── _my_custom.scss
│ ├── app.scss
│ └── _custom.scss
├── lang
│ └── en
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ └── passwords.php
└── views
│ └── app.blade.php
├── .gitattributes
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ ├── ExampleTest.php
│ ├── BrowserSessionsTest.php
│ ├── ProfileInformationTest.php
│ ├── RegistrationTest.php
│ ├── DeleteApiTokenTest.php
│ ├── AuthenticationTest.php
│ ├── DeleteAccountTest.php
│ ├── CreateApiTokenTest.php
│ ├── PasswordConfirmationTest.php
│ ├── ApiTokenPermissionsTest.php
│ ├── UpdatePasswordTest.php
│ ├── TwoFactorAuthenticationSettingsTest.php
│ ├── PasswordResetTest.php
│ └── EmailVerificationTest.php
└── CreatesApplication.php
├── .styleci.yml
├── .gitignore
├── .editorconfig
├── app
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── TrustHosts.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── TrimStrings.php
│ │ ├── Authenticate.php
│ │ ├── TrustProxies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── HandleInertiaRequests.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ └── Admins
│ │ │ ├── AdminDashboardController.php
│ │ │ ├── AdminController.php
│ │ │ ├── PermissionController.php
│ │ │ ├── RoleController.php
│ │ │ └── UserController.php
│ └── Kernel.php
├── Actions
│ ├── Fortify
│ │ ├── PasswordValidationRules.php
│ │ ├── ResetUserPassword.php
│ │ ├── CreateNewUser.php
│ │ ├── UpdateUserPassword.php
│ │ └── UpdateUserProfileInformation.php
│ └── Jetstream
│ │ └── DeleteUser.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── JetstreamServiceProvider.php
│ ├── FortifyServiceProvider.php
│ └── RouteServiceProvider.php
├── Exceptions
│ └── Handler.php
├── Console
│ └── Kernel.php
└── Models
│ └── User.php
├── webpack.config.js
├── README.md
├── routes
├── channels.php
├── api.php
├── console.php
└── web.php
├── server.php
├── webpack.mix.js
├── config
├── cors.php
├── services.php
├── view.php
├── hashing.php
├── sanctum.php
├── broadcasting.php
├── jetstream.php
├── filesystems.php
├── queue.php
├── logging.php
├── cache.php
├── mail.php
└── auth.php
├── .env.example
├── package.json
├── phpunit.xml
├── artisan
└── composer.json
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/resources/markdown/policy.md:
--------------------------------------------------------------------------------
1 | # Privacy Policy
2 |
3 | Edit this file to define the privacy policy for your application.
4 |
--------------------------------------------------------------------------------
/resources/markdown/terms.md:
--------------------------------------------------------------------------------
1 | # Terms of Service
2 |
3 | Edit this file to define the terms of service for your application.
4 |
--------------------------------------------------------------------------------
/resources/js/Jetstream/SectionBorder.vue:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
18 | {{ message }} 19 |
20 |