You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ After initializing a fresh instance of Laravel (and making all the necessary con
28
28
29
29
1.`Cd` to your Laravel app
30
30
2. Install this preset via `composer require laravel-frontend-presets/now-ui-dashboard`. No need to register the service provider. Laravel 5.5 & up can auto detect the package.
31
-
3. Run `php artisan preset nowui` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
31
+
3. Run `php artisan preset nowui` command to install the NowUI preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
32
32
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
33
33
4. In your terminal run `composer dump-autoload`
34
34
5. Run `php artisan migrate --seed` to create basic users table
@@ -42,7 +42,7 @@ After initializing a fresh instance of Laravel (and making all the necessary con
42
42
5. Add `"LaravelFrontendPresets\\NowUiPreset\\": "presets/NowUi/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
43
43
6. Add `LaravelFrontendPresets\NowUiPreset\NowUiPresetServiceProvider::class` to `config/app.php` file
44
44
7. In your terminal run `composer dump-autoload`
45
-
8. Run `php artisan preset nowui` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
45
+
8. Run `php artisan preset nowui` command to install the NowUI preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`
46
46
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
47
47
9. Run `php artisan migrate --seed` to create basic users table
48
48
@@ -64,7 +64,7 @@ You can access the dashboard either by using the "**Dashboards/Dashboard**" link
64
64
65
65
You have the option to edit the current logged in user's profile information (name, email, profile picture) and password. To access this page, just click the "**Examples/Profile**" link in the left sidebar or add **/profile** in the URL.
66
66
67
-
The `App\Htttp\Controlers\ProfileController` handles the update of the user information and password.
67
+
The `App\Http\Controllers\ProfileController` handles the update of the user information and password.
68
68
69
69
```
70
70
public function update(ProfileRequest $request)
@@ -91,7 +91,7 @@ public function password(PasswordRequest $request)
91
91
}
92
92
```
93
93
94
-
If you input the wrong data when editing the profile, don`t worry. Validation rules have been added to prevent this (see `App\Http\Requests\ProfileRequest`). If you try to change the password, you will see that additional validation rules have been added in `App\Http\Requests\PasswordRequest`. You also have a custom validation rule that can be found in `App\Rules\CurrentPasswordCheckRule`.
94
+
If you input the wrong data when editing the profile, don't worry. Validation rules have been added to prevent this (see `App\Http\Requests\ProfileRequest`). If you try to change the password, you will see that additional validation rules have been added in `App\Http\Requests\PasswordRequest`. You also have a custom validation rule that can be found in `App\Rules\CurrentPasswordCheckRule`.
0 commit comments