forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.0 KiB
PHTML
50 lines
2.0 KiB
PHTML
2 years ago
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
<div class="container">
|
||
|
<div class="row justify-content-center">
|
||
|
<div class="col-md-8">
|
||
|
<div class="card">
|
||
|
<div class="card-header">{{ __('Confirm Password') }}</div>
|
||
|
|
||
|
<div class="card-body">
|
||
|
{{ __('Please confirm your password before continuing.') }}
|
||
|
|
||
|
<form method="POST" action="{{ route('password.confirm') }}">
|
||
|
@csrf
|
||
|
|
||
|
<div class="row mb-3">
|
||
|
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
||
|
|
||
|
<div class="col-md-6">
|
||
|
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
|
||
|
|
||
|
@error('password')
|
||
|
<span class="invalid-feedback" role="alert">
|
||
|
<strong>{{ $message }}</strong>
|
||
|
</span>
|
||
|
@enderror
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="row mb-0">
|
||
|
<div class="col-md-8 offset-md-4">
|
||
|
<button type="submit" class="btn btn-primary">
|
||
|
{{ __('Confirm Password') }}
|
||
|
</button>
|
||
|
|
||
|
@if (Route::has('password.request'))
|
||
|
<a class="btn btn-link" href="{{ route('password.request') }}">
|
||
|
{{ __('Forgot Your Password?') }}
|
||
|
</a>
|
||
|
@endif
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|