@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }}
{{ html()->email('email')
->class('mb-0')
->placeholder(__('validation.attributes.frontend.email'))
->attribute('maxlength', 191)
->required()
->autofocus() }}