@extends('frontend.layouts.customer-login') @section('title', 'Customer Login' . ' '.html_entity_decode("—", ENT_QUOTES, 'UTF-8').' ' . app_name()) @section('content') {{ html()->form('POST', route('frontend.auth.password.reset'))->class('login-form')->open() }} {{ html()->hidden('token', $token) }} @if(isset($email)) {{ html()->hidden('email', $email) }} @endif

@lang('labels.frontend.passwords.reset_password_box_title')

Missing Information.
@if(session('status'))
{{ session('status') }}
@endif @if($ac_code ?? null)
{{ html()->label('Customer Code')->for('ac_code_business_display') }}
{{ html()->hidden('ac_code', $ac_code) }} @endif
{{ html()->label(__('validation.attributes.frontend.password'))->for('password') }}
{{ html()->password('password') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password')) ->required() }}
{{ html()->label(__('validation.attributes.frontend.password_confirmation'))->for('password_confirmation') }}
{{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password_confirmation')) ->required() }}
{{ form_submit(__('labels.frontend.passwords.reset_password_button')) }}
{{ html()->form()->close() }} @endsection