Skip to content

Commit 00bd104

Browse files
committed
.
1 parent 4f48cdf commit 00bd104

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.background": "#0F313D",
4+
"titleBar.activeBackground": "#154556",
5+
"titleBar.activeForeground": "#F6FBFD"
6+
}
7+
}

readme.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ After initializing a fresh instance of Laravel (and making all the necessary con
3939
### By using the archive
4040

4141
1. In your application's root create a **presets** folder
42-
2. [Download an archive](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard/archive/master.zip) of the repo and unzip it
42+
2. [Download an archive](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard-laravel/archive/master.zip) of the repo and unzip it
4343
3. Copy and paste **light-bootstrap-dashboard-master** folder in presets (created in step 2) and rename it to **light-bootstrap**
4444
4. Open `composer.json` file
4545
5. Add `"LaravelFrontendPresets\\LightBootstrapPreset\\": "presets/light-bootstrap/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
@@ -94,16 +94,13 @@ The preset comes with a user management option out of the box. To access this cl
9494
The first thing you will see is the listing of the existing users. You can add new ones by clicking the "**Add user**" button (above the table on the right). On the Add user page you will see the form that allows you to do this. All pages are generate using blade templates:
9595

9696
```
97-
<div class="row">
98-
<label class="col-sm-2 col-form-label">{{ __('Name') }}</label>
99-
<div class="col-sm-7">
100-
<div class="form-group{{ $errors->has('name') ? ' has-danger' : '' }}">
101-
<input class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" name="name" id="input-name" type="text" placeholder="{{ __('Name') }}" value="{{ old('name') }}" required="true" aria-required="true"/>
102-
@if ($errors->has('name'))
103-
<span id="name-error" class="error text-danger" for="input-name">{{ $errors->first('name') }}</span>
104-
@endif
105-
</div>
106-
</div>
97+
<div class="form-group{{ $errors->has('name') ? ' has-danger' : '' }}">
98+
<label class="form-control-label" for="input-name">
99+
<i class="w3-xxlarge fa fa-user"></i>{{ __('Name') }}
100+
</label>
101+
<input type="text" name="name" id="input-name" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" placeholder="{{ __('Name') }}" value="{{ old('name') }}" required autofocus>
102+
103+
@include('alerts.feedback', ['field' => 'name'])
107104
</div>
108105
```
109106

@@ -474,7 +471,7 @@ At present, we officially aim to support the last two versions of the following
474471
- Documentation: <https://light-bootstrap-dashboard-laravel.creative-tim.com/docs/getting-started/laravel-setup.html?ref=lbdl-readme>
475472
- License Agreement: <https://www.creative-tim.com/license>
476473
- Support: <https://www.creative-tim.com/contact-us>
477-
- Issues: [Github Issues Page](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard/issues)
474+
- Issues: [Github Issues Page](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard-laravel/issues)
478475
- **Dashboards:**
479476

480477
| HTML | LARAVEL |

0 commit comments

Comments
 (0)