@include('frontend.auth.includes.socialite')
{{ html()->form('POST', route('frontend.auth.login.post'))->open() }}
{{ 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() }}
{{ form_submit(__('labels.frontend.auth.login_button'), 'btn btn-block btn-success') }}
@if(config('access.captcha.login'))
@captcha
{{ html()->hidden('captcha_status', 'true') }}
@endif
{{ html()->form()->close() }}