63 lines
2.4 KiB
PHP
63 lines
2.4 KiB
PHP
<x-guest-layout>
|
|
<div class="mb-4 text-sm text-gray-600">
|
|
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
|
|
</div>
|
|
|
|
<form method="POST" action="{{ route('password.confirm') }}">
|
|
@csrf
|
|
|
|
<!-- Password -->
|
|
<div>
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" />
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="flex justify-end mt-4">
|
|
<x-primary-button>
|
|
{{ __('Confirm') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</x-guest-layout>
|
|
|
|
|
|
|
|
@extends('layouts' . '.' . get_frontend_settings('theme'))
|
|
@push('title', get_phrase('Confirm Password'))
|
|
@push('meta')@endpush
|
|
@push('css')
|
|
@endpush
|
|
@section('content')
|
|
<!------------------- Login Area Start ------>
|
|
<section class="login-area">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-7 col-md-6">
|
|
<div class="login-img text-center">
|
|
<img class="w-75 h-auto ms-auto me-auto" src="{{ asset('assets/frontend/default/image/login.gif') }}" alt="...">
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-5 col-md-6">
|
|
<form action="{{ route('password.confirm') }}" class="global-form login-form mt-25" method="POST">
|
|
@csrf
|
|
<h4 class="g-title">{{ get_phrase('Confirm Password') }}</h4>
|
|
<p class="description">{{get_phrase('This is a secure area of the application. Please confirm your password before continuing.')}}</p>
|
|
<div class="form-group">
|
|
<label for="password" class="form-label">{{ get_phrase('Password') }}</label>
|
|
<input type="password" id="password" name="password" class="form-control" placeholder="{{ get_phrase('Enter Your Password') }}">
|
|
</div>
|
|
<button type="submit" class="eBtn gradient w-100 mt-5">{{ get_phrase('Confirm') }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!------------------- Login Area End ------>
|
|
@endsection
|
|
@push('js')
|
|
|
|
@endpush
|