Update (all): fix php formatting using laravel pint, fix blade using shufo

This commit is contained in:
2023-07-25 22:18:01 +08:00
parent 6adc27076d
commit 82353c1ecd
37 changed files with 536 additions and 480 deletions

View File

@@ -13,14 +13,16 @@
<label class="form-label">
{{ __('Password') }}
@if (Route::has('password.request'))
<span class="form-label-description">
<a href="{{ route('password.request') }}">{{ __('Forgot Password?') }}</a>
</span>
<span class="form-label-description">
<a href="{{ route('password.request') }}">{{ __('Forgot Password?') }}</a>
</span>
@endif
</label>
<input type="password" name="password" class="form-control form-control-user @error('password') is-invalid @enderror" placeholder="{{ __('Enter Password') }}">
<input type="password" name="password"
class="form-control form-control-user @error('password') is-invalid @enderror"
placeholder="{{ __('Enter Password') }}">
@error('password')
<div class="invalid-feedback">{{ $message }}</div>
<div class="invalid-feedback">{{ $message }}</div>
@enderror
</div>