@extends('frontend.layouts.app') @section('title', app_name() . ' | '.__('labels.frontend.auth.login_box_title')) @push('after-styles') @endpush @section('content')
{{ __('labels.frontend.auth.login_box_title') }}
{{ html()->form('POST', route('frontend.auth.client.login.post'))->open() }}
{{-- {{ html()->label(__('validation.attributes.frontend.emailorphone'))->for('email') }} --}} {{ html()->text('emailorphone') ->class('form-control') ->placeholder(__('validation.attributes.frontend.emailorphone')) ->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(html()->checkbox('remember', true, 1) . ' ' . __('labels.frontend.auth.remember_me'))->for('remember') }}
{{ form_submit(__('labels.frontend.auth.login_button'))->class('btn btn-info') }}
{{ html()->form()->close() }}
{!! $socialiteLinks !!}
@endsection