Skip to content

Commit

Permalink
Fixed show long user name on lock page
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed May 13, 2024
1 parent 47803b6 commit 8f844e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/views/auth/lockme.blade.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<div class="mb-3 d-flex align-items-center">
<span class="thumb-sm avatar me-3">
<img src="{{ $lockUser->presenter()->image() }}" class="b bg-light" alt="test">
</span>
<span style="width:125px;" class="small">
<div class="thumb-sm avatar me-3">
<img src="{{ $lockUser->presenter()->image() }}" class="b bg-light" alt="{{ $lockUser->presenter()->title() }}">
</div>
<div class="d-flex flex-column overflow-hidden small">
<span class="text-ellipsis">{{ $lockUser->presenter()->title() }}</span>
<span class="text-muted d-block text-ellipsis">{{ $lockUser->presenter()->subTitle() }}</span>
</span>
</div>
<input type="hidden" name="email" required value="{{ $lockUser->email }}">
</div>

@error('email')
<span class="d-block invalid-feedback text-danger">
{{ $errors->first('email') }}
{{ $errors->first('email') }}
</span>
@enderror

Expand Down

0 comments on commit 8f844e2

Please sign in to comment.