Skip to content

Commit 766bc13

Browse files
committed
wip
1 parent 1f4d9c3 commit 766bc13

File tree

7 files changed

+351
-349
lines changed

7 files changed

+351
-349
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"algolia/scout-extended": "^3.1",
99
"blade-ui-kit/blade-heroicons": "^2.3",
1010
"blade-ui-kit/blade-icons": "^1.6",
11-
"blade-ui-kit/blade-ui-kit": "^0.6",
11+
"blade-ui-kit/blade-ui-kit": "^0.6.3",
1212
"blade-ui-kit/blade-zondicons": "^1.5",
1313
"codeat3/blade-simple-icons": "^5.0",
1414
"guzzlehttp/guzzle": "^7.2",

composer.lock

Lines changed: 336 additions & 334 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/views/auth/passwords/reset.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</div>
1414

1515
<div>
16-
<x-forms.label for="password" />
16+
<x-forms.label for="password">New Password</x-forms.label>
1717

1818
<x-forms.inputs.password name="password" id="password" required />
1919
</div>
2020

2121
<div>
22-
<x-forms.label for="password_confirmation" />
22+
<x-forms.label for="password_confirmation">Confirm New Password</x-forms.label>
2323

2424
<x-forms.inputs.password name="password_confirmation" id="password_confirmation" required />
2525
</div>

resources/views/components/articles/form.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<div class="flex flex-col space-y-6">
3939
<div class="grow space-y-6">
4040
<div class="space-y-1">
41-
<x-forms.label for="title">Title</x-forms.label>
41+
<x-forms.label for="title" />
4242

4343
<x-forms.inputs.input name="title" :value="old('title', $article?->title())" required maxlength="100" />
4444

@@ -50,7 +50,7 @@
5050

5151
<div class="grow space-y-6">
5252
<div class="space-y-1">
53-
<x-forms.label for="body">Body</x-forms.label>
53+
<x-forms.label for="body" />
5454

5555
<livewire:editor :body="$article?->body()"/>
5656

@@ -73,7 +73,7 @@
7373

7474
<div class="grow space-y-6">
7575
<div class="space-y-1">
76-
<x-forms.label for="tags">Tags</x-forms.label>
76+
<x-forms.label for="tags" />
7777

7878
<select name="tags[]" id="create-article" multiple x-data="{}" x-init="$nextTick(function () { choices($el) })">
7979
@foreach ($tags as $tag)

resources/views/components/threads/form.blade.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<div class="flex flex-col space-y-6">
3333
<div class="grow space-y-6">
3434
<div class="space-y-1">
35-
<x-forms.label for="subject"/>
35+
<x-forms.label for="subject" />
3636

3737
<x-forms.inputs.input name="subject" :value="$thread?->subject()" required maxlength="60" />
3838

@@ -44,9 +44,7 @@
4444

4545
<div class="grow space-y-6">
4646
<div class="space-y-1">
47-
<x-forms.label for="tags">
48-
Tags
49-
</x-forms.label>
47+
<x-forms.label for="tags" />
5048

5149
<select name="tags[]" id="create-thread" multiple x-data="{}" x-init="$nextTick(function () { choices($el) })">
5250
@foreach($tags as $tag)
@@ -58,7 +56,9 @@
5856

5957
<div class="grow space-y-6">
6058
<div class="space-y-1">
61-
<x-forms.label for="body">Compose your question</x-forms.label>
59+
<x-forms.label for="body">
60+
Compose your question
61+
</x-forms.label>
6262

6363
<livewire:editor
6464
:body="$thread?->body()"

resources/views/users/settings/api_tokens.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
<div>
4141
<div class="col-span-12">
42-
<x-forms.label for="token_name">Token name</x-forms.label>
42+
<x-forms.label for="token_name" />
4343

4444
<x-forms.inputs.input name="token_name" form="api_token_settings_form" required />
4545
</div>

resources/views/users/settings/profile.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<div class="flex flex-col space-y-6 lg:flex-row lg:space-y-0 lg:space-x-6">
1717
<div class="grow space-y-6">
1818
<div class="space-y-1">
19-
<x-forms.label for="name"/>
19+
<x-forms.label for="name" />
2020

2121
<x-forms.inputs.input name="name" :value="Auth::user()->name()" required />
2222
</div>
2323

2424
<div class="space-y-1">
25-
<x-forms.label for="bio"/>
25+
<x-forms.label for="bio" />
2626

2727
<x-forms.inputs.textarea name="bio" maxlength="160">
2828
{{ Auth::user()->bio() }}
@@ -79,7 +79,7 @@
7979
</div>
8080

8181
<div class="col-span-12 sm:col-span-6">
82-
<x-forms.label for="website">Website</x-forms.label>
82+
<x-forms.label for="website" />
8383

8484
<x-forms.inputs.input name="website" :value="Auth::user()->website()" prefix-icon="heroicon-o-globe-alt" />
8585
</div>

0 commit comments

Comments
 (0)