@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ html()->form('POST', route('frontend.auth.password.reset'))->class('form-horizontal')->open() }}
{{ html()->hidden('token', $token) }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }}
{{ html()->email('email')
->class('form-control')
->placeholder(__('validation.attributes.frontend.email'))
->attribute('maxlength', 191)
->required() }}
{{ 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() }}
{{ html()->form()->close() }}