Install Breeze
Showing
app/Http/Controllers/ProfileController.php
0 → 100644
app/Http/Requests/Auth/LoginRequest.php
0 → 100644
app/Http/Requests/ProfileUpdateRequest.php
0 → 100644
app/View/Components/AppLayout.php
0 → 100644
app/View/Components/GuestLayout.php
0 → 100644
... | @@ -7,6 +7,7 @@ | ... | @@ -7,6 +7,7 @@ |
"require": { | "require": { | ||
"php": "^8.1", | "php": "^8.1", | ||
"guzzlehttp/guzzle": "^7.2", | "guzzlehttp/guzzle": "^7.2", | ||
"laravel/breeze": "^1.29", | |||
"laravel/framework": "^10.10", | "laravel/framework": "^10.10", | ||
"laravel/sanctum": "^3.3", | "laravel/sanctum": "^3.3", | ||
"laravel/tinker": "^2.8" | "laravel/tinker": "^2.8" | ||
... | ... |
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
... | @@ -6,8 +6,13 @@ | ... | @@ -6,8 +6,13 @@ |
"build": "vite build" | "build": "vite build" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@tailwindcss/forms": "^0.5.2", | |||
"alpinejs": "^3.4.2", | |||
"autoprefixer": "^10.4.2", | |||
"axios": "^1.6.4", | "axios": "^1.6.4", | ||
"laravel-vite-plugin": "^1.0.0", | "laravel-vite-plugin": "^1.0.0", | ||
"postcss": "^8.4.31", | |||
"tailwindcss": "^3.1.0", | |||
"vite": "^5.0.0" | "vite": "^5.0.0" | ||
} | } | ||
} | } |
postcss.config.js
0 → 100644
resources/views/auth/login.blade.php
0 → 100644
resources/views/auth/register.blade.php
0 → 100644
resources/views/auth/verify-email.blade.php
0 → 100644
resources/views/components/modal.blade.php
0 → 100644
resources/views/dashboard.blade.php
0 → 100644
resources/views/layouts/app.blade.php
0 → 100644
resources/views/layouts/guest.blade.php
0 → 100644
resources/views/layouts/navigation.blade.php
0 → 100644
resources/views/profile/edit.blade.php
0 → 100644
routes/auth.php
0 → 100644
tailwind.config.js
0 → 100644
tests/Feature/Auth/AuthenticationTest.php
0 → 100644
tests/Feature/Auth/EmailVerificationTest.php
0 → 100644
tests/Feature/Auth/PasswordResetTest.php
0 → 100644
tests/Feature/Auth/PasswordUpdateTest.php
0 → 100644
tests/Feature/Auth/RegistrationTest.php
0 → 100644
tests/Feature/ProfileTest.php
0 → 100644
Please
register
or
sign in
to comment