Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide password input #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions orders/manage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,15 +217,15 @@ class="absolute right-2.5 top-2.5 inline-flex h-8 w-8 items-center justify-cente
<div class="mb-6">
<label for="password"
class="mb-2 block text-sm font-medium text-gray-900 dark:text-white">{{ __('auth.new_password') }}</label>
<input type="text" name="password" id="password"
<input type="password" name="password" id="password"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder="{{ __('auth.new_password') }}" required>
</div>

<div class="mb-6">
<label for="password_confirmation"
class="mb-2 block text-sm font-medium text-gray-900 dark:text-white">{{ __('auth.confirm_new_password') }}</label>
<input type="text" name="password_confirmation" id="password_confirmation"
<input type="password" name="password_confirmation" id="password_confirmation"
class="block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 dark:focus:ring-primary-500"
placeholder="{{ __('auth.confirm_new_password') }}" required>
</div>
Expand Down