Files
sccs_laravel/resources/views/auth/confirm-password.blade.php
2025-11-04 16:23:40 +05:00

57 lines
2.2 KiB
PHP

@extends('layouts/fullLayoutMaster')
@section('title', 'Login Page')
@section('page-style')
{{-- Page Css files --}}
<link rel="stylesheet" href="{{ asset(mix('css/base/pages/authentication.css')) }}">
@endsection
@section('content')
<div class="auth-wrapper auth-basic px-2">
<div class="auth-inner my-2">
<!-- Login basic -->
<div class="card mb-0">
<div class="card-body">
<a href="#" class="brand-logo">
<img src="{{ asset('images/logo/logo.png') }}" class="logo w-75" alt="{{config('app.name')}}">
</a>
<h4 class="card-title mb-1 text-center">Welcome to {{config('app.name')}}! 👋</h4>
<p class="card-text mb-2 text-center">Please confirm your password before continuing.</p>
<form class="auth-login-form mt-2" method="POST" action="{{ route('password.confirm') }}">
@csrf
<div class="mb-1">
<div class="input-group input-group-merge form-password-toggle @error('password') is-invalid @enderror">
<input type="password" class="form-control form-control-merge @error('password') is-invalid @enderror"
id="reset-password-new" name="password"
placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
aria-describedby="reset-password-new" tabindex="2" autofocus required />
<span class="input-group-text cursor-pointer"><i data-feather="eye"></i></span>
</div>
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<button type="submit" class="btn btn-primary w-100" tabindex="2">Confirm Password</button>
</form>
<p class="text-center mt-2">
@if (Route::has('password.request'))
<a class="btn btn-link" href="{{ route('password.request') }}">
{{ __('Forgot Your Password?') }}
</a>
@endif
</p>
</div>
</div>
<!-- /Login basic -->
</div>
</div>
@endsection