myvideogamelist.com/resources/views/pages/account/settings/_signin-method.blade.php
Jimmy Brancaccio b39ecf1638 Initial Commit
The initial public commit of MVGL website code.
2024-01-14 13:51:43 -06:00

133 lines
7.1 KiB
PHP

<!--begin::Sign-in Method-->
<div class="card {{ $class ?? '' }}" {{ util()->putHtmlAttributes(array('id' => $id ?? '')) }}>
<!--begin::Card header-->
<div class="card-header border-0 cursor-pointer" role="button" data-bs-toggle="collapse" data-bs-target="#kt_account_signin_method">
<div class="card-title m-0">
<h3 class="fw-bolder m-0">{{ __('Sign-in Method') }}</h3>
</div>
</div>
<!--end::Card header-->
<!--begin::Content-->
<div id="kt_account_signin_method" class="collapse show">
<!--begin::Card body-->
<div class="card-body border-top p-9">
<!--begin::Email Address-->
<div class="d-flex flex-wrap align-items-center">
<!--begin::Label-->
<div id="kt_signin_email">
<div class="fs-6 fw-bolder mb-1">{{ __('Email Address') }}</div>
<div class="fw-bold text-gray-600">{{ auth()->user()->email }}</div>
</div>
<!--end::Label-->
<!--begin::Edit-->
<div id="kt_signin_email_edit" class="flex-row-fluid d-none">
<!--begin::Form-->
<form id="kt_signin_change_email" class="form" novalidate="novalidate" method="POST" action="{{ route('settings.changeEmail') }}">
@csrf
@method('PUT')
<input type="hidden" name="current_email" value="{{ auth()->user()->email }} "/>
<div class="row mb-6">
<div class="col-lg-6 mb-4 mb-lg-0">
<div class="fv-row mb-0">
<label for="email" class="form-label fs-6 fw-bolder mb-3">{{ __('Enter New Email Address') }}</label>
<input type="email" class="form-control form-control-lg form-control-solid" placeholder="{{ __('Email Address') }}" name="email" value="{{ old('email') }}" id="email"/>
</div>
</div>
<div class="col-lg-6">
<div class="fv-row mb-0">
<label for="current_password" class="form-label fs-6 fw-bolder mb-3">{{ __('Confirm Password') }}</label>
<input type="password" class="form-control form-control-lg form-control-solid" name="current_password" id="current_password"/>
</div>
</div>
</div>
<div class="d-flex">
<button id="kt_signin_submit" type="button" class="btn btn-primary me-2 px-6">
@include('partials.general._button-indicator', ['label' => __('Update Email')])
</button>
<button id="kt_signin_cancel" type="button" class="btn btn-color-gray-400 btn-active-light-primary px-6">{{ __('Cancel') }}</button>
</div>
</form>
<!--end::Form-->
</div>
<!--end::Edit-->
<!--begin::Action-->
<div id="kt_signin_email_button" class="ms-auto">
<button class="btn btn-light btn-active-light-primary">{{ __('Change Email') }}</button>
</div>
<!--end::Action-->
</div>
<!--end::Email Address-->
<!--begin::Separator-->
<div class="separator separator-dashed my-6"></div>
<!--end::Separator-->
<!--begin::Password-->
<div class="d-flex flex-wrap align-items-center mb-10">
<!--begin::Label-->
<div id="kt_signin_password">
<div class="fs-6 fw-bolder mb-1">{{ __('Password') }}</div>
<div class="fw-bold text-gray-600">************</div>
</div>
<!--end::Label-->
<!--begin::Edit-->
<div id="kt_signin_password_edit" class="flex-row-fluid d-none">
<!--begin::Form-->
<form id="kt_signin_change_password" class="form" novalidate="novalidate" method="POST" action="{{ route('settings.changePassword') }}">
@csrf
@method('PUT')
<input type="hidden" name="current_email" value="{{ auth()->user()->email }} "/>
<div class="row mb-1">
<div class="col-lg-4">
<div class="fv-row mb-0">
<label for="current_password" class="form-label fs-6 fw-bolder mb-3">{{ __('Current Password') }}</label>
<input type="password" class="form-control form-control-lg form-control-solid" name="current_password" id="current_password"/>
</div>
</div>
<div class="col-lg-4">
<div class="fv-row mb-0">
<label for="password" class="form-label fs-6 fw-bolder mb-3">{{ __('New Password') }}</label>
<input type="password" class="form-control form-control-lg form-control-solid" name="password" id="password"/>
</div>
</div>
<div class="col-lg-4">
<div class="fv-row mb-0">
<label for="password_confirmation" class="form-label fs-6 fw-bolder mb-3">{{ __('Confirm New Password') }}</label>
<input type="password" class="form-control form-control-lg form-control-solid" name="password_confirmation" id="password_confirmation"/>
</div>
</div>
</div>
<div class="form-text mb-5">{{ __('Password must be at least 8 character and contain symbols') }}</div>
<div class="d-flex">
<button id="kt_password_submit" type="button" class="btn btn-primary me-2 px-6">
@include('partials.general._button-indicator', ['label' => __('Update Password')])
</button>
<button id="kt_password_cancel" type="button" class="btn btn-color-gray-400 btn-active-light-primary px-6">{{ __('Cancel') }}</button>
</div>
</form>
<!--end::Form-->
</div>
<!--end::Edit-->
<!--begin::Action-->
<div id="kt_signin_password_button" class="ms-auto">
<button class="btn btn-light btn-active-light-primary">{{ __('Reset Password') }}</button>
</div>
<!--end::Action-->
</div>
<!--end::Password-->
</div>
<!--end::Card body-->
</div>
<!--end::Content-->
</div>
<!--end::Sign-in Method-->