Skip to content

Commit 5583e93

Browse files
Merge branch 'master' into master
2 parents 0393ee3 + dabc746 commit 5583e93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ After initializing a fresh instance of Laravel (and making all the necessary con
2828

2929
1. `Cd` to your Laravel app
3030
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`
3232
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
3333
4. In your terminal run `composer dump-autoload`
3434
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
4242
5. Add `"LaravelFrontendPresets\\NowUiPreset\\": "presets/NowUi/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
4343
6. Add `LaravelFrontendPresets\NowUiPreset\NowUiPresetServiceProvider::class` to `config/app.php` file
4444
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`
4646
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
4747
9. Run `php artisan migrate --seed` to create basic users table
4848

@@ -64,7 +64,7 @@ You can access the dashboard either by using the "**Dashboards/Dashboard**" link
6464

6565
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.
6666

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.
6868

6969
```
7070
public function update(ProfileRequest $request)
@@ -91,7 +91,7 @@ public function password(PasswordRequest $request)
9191
}
9292
```
9393

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`.
9595

9696
```
9797
public function rules()

0 commit comments

Comments
 (0)