File tree 6 files changed +13
-13
lines changed
stubs/livewire/resources/views
6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 12
12
<x-slot name =" form" >
13
13
<!-- Token Name -->
14
14
<div class =" col-span-6 sm:col-span-4" >
15
- <x-jet-label for =" name" value =" Token Name" />
15
+ <x-jet-label for =" name" value =" {{ __ ( ' Token Name' ) } } " />
16
16
<x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model.defer =" createApiTokenForm.name" autofocus />
17
17
<x-jet-input-error for =" name" class =" mt-2" />
18
18
</div >
19
19
20
20
<!-- Token Permissions -->
21
21
@if (Laravel \Jetstream \Jetstream:: hasPermissions () )
22
22
<div class =" col-span-6" >
23
- <x-jet-label for =" permissions" value =" Permissions" />
23
+ <x-jet-label for =" permissions" value =" {{ __ ( ' Permissions' ) } } " />
24
24
25
25
<div class =" mt-2 grid grid-cols-1 md:grid-cols-2 gap-4" >
26
26
@foreach (Laravel \Jetstream \Jetstream:: $permissions as $permission )
Original file line number Diff line number Diff line change 9
9
10
10
<x-slot name =" form" >
11
11
<div class =" col-span-6 sm:col-span-4" >
12
- <x-jet-label for =" current_password" value =" Current Password" />
12
+ <x-jet-label for =" current_password" value =" {{ __ ( ' Current Password' ) } } " />
13
13
<x-jet-input id =" current_password" type =" password" class =" mt-1 block w-full" wire:model.defer =" state.current_password" autocomplete =" current-password" />
14
14
<x-jet-input-error for =" current_password" class =" mt-2" />
15
15
</div >
16
16
17
17
<div class =" col-span-6 sm:col-span-4" >
18
- <x-jet-label for =" password" value =" New Password" />
18
+ <x-jet-label for =" password" value =" {{ __ ( ' New Password' ) } } " />
19
19
<x-jet-input id =" password" type =" password" class =" mt-1 block w-full" wire:model.defer =" state.password" autocomplete =" new-password" />
20
20
<x-jet-input-error for =" password" class =" mt-2" />
21
21
</div >
22
22
23
23
<div class =" col-span-6 sm:col-span-4" >
24
- <x-jet-label for =" password_confirmation" value =" Confirm Password" />
24
+ <x-jet-label for =" password_confirmation" value =" {{ __ ( ' Confirm Password' ) } } " />
25
25
<x-jet-input id =" password_confirmation" type =" password" class =" mt-1 block w-full" wire:model.defer =" state.password_confirmation" autocomplete =" new-password" />
26
26
<x-jet-input-error for =" password_confirmation" class =" mt-2" />
27
27
</div >
Original file line number Diff line number Diff line change 24
24
reader.readAsDataURL($refs.photo.files[0]);
25
25
" />
26
26
27
- <x-jet-label for =" photo" value =" Photo" />
27
+ <x-jet-label for =" photo" value =" {{ __ ( ' Photo' ) } } " />
28
28
29
29
<!-- Current Profile Photo -->
30
30
<div class =" mt-2" x-show =" ! photoPreview" >
48
48
49
49
<!-- Name -->
50
50
<div class =" col-span-6 sm:col-span-4" >
51
- <x-jet-label for =" name" value =" Name" />
51
+ <x-jet-label for =" name" value =" {{ __ ( ' Name' ) } } " />
52
52
<x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model.defer =" state.name" autocomplete =" name" />
53
53
<x-jet-input-error for =" name" class =" mt-2" />
54
54
</div >
Original file line number Diff line number Diff line change 9
9
10
10
<x-slot name =" form" >
11
11
<div class =" col-span-6" >
12
- <x-jet-label value =" Team Owner" />
12
+ <x-jet-label value =" {{ __ ( ' Team Owner' ) } } " />
13
13
14
14
<div class =" flex items-center mt-2" >
15
15
<img class =" w-12 h-12 rounded-full object-cover" src =" {{ $this -> user -> profile_photo_url } }" alt =" {{ $this -> user -> name } }" >
22
22
</div >
23
23
24
24
<div class =" col-span-6 sm:col-span-4" >
25
- <x-jet-label for =" name" value =" Team Name" />
25
+ <x-jet-label for =" name" value =" {{ __ ( ' Team Name' ) } } " />
26
26
<x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model.defer =" state.name" autofocus />
27
27
<x-jet-input-error for =" name" class =" mt-2" />
28
28
</div >
Original file line number Diff line number Diff line change 22
22
23
23
<!-- Member Email -->
24
24
<div class =" col-span-6 sm:col-span-4" >
25
- <x-jet-label for =" email" value =" Email" />
25
+ <x-jet-label for =" email" value =" {{ __ ( ' Email' ) } } " />
26
26
<x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model.defer =" addTeamMemberForm.email" />
27
27
<x-jet-input-error for =" email" class =" mt-2" />
28
28
</div >
29
29
30
30
<!-- Role -->
31
31
@if (count ($this -> roles ) > 0 )
32
32
<div class =" col-span-6 lg:col-span-4" >
33
- <x-jet-label for =" role" value =" Role" />
33
+ <x-jet-label for =" role" value =" {{ __ ( ' Role' ) } } " />
34
34
<x-jet-input-error for =" role" class =" mt-2" />
35
35
36
36
<div class =" mt-1 border border-gray-200 rounded-lg cursor-pointer" >
Original file line number Diff line number Diff line change 10
10
<x-slot name =" form" >
11
11
<!-- Team Owner Information -->
12
12
<div class =" col-span-6" >
13
- <x-jet-label value =" Team Owner" />
13
+ <x-jet-label value =" {{ __ ( ' Team Owner' ) } } " />
14
14
15
15
<div class =" flex items-center mt-2" >
16
16
<img class =" w-12 h-12 rounded-full object-cover" src =" {{ $team -> owner -> profile_photo_url } }" alt =" {{ $team -> owner -> name } }" >
24
24
25
25
<!-- Team Name -->
26
26
<div class =" col-span-6 sm:col-span-4" >
27
- <x-jet-label for =" name" value =" Team Name" />
27
+ <x-jet-label for =" name" value =" {{ __ ( ' Team Name' ) } } " />
28
28
29
29
<x-jet-input id =" name"
30
30
type =" text"
You can’t perform that action at this time.
0 commit comments