@extends('frontend.layouts.login') @section('title', app_name() . ' | ' . __('labels.frontend.auth.login_box_title')) @section('content')
{{ html()->form('POST', route('frontend.auth.sitelogin.post'))->open() }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('form-control mb-2') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.password'))->for('password') }} {{ html()->password('password') ->class('form-control mb-2') ->placeholder(__('validation.attributes.frontend.password')) ->required() }}
{{ form_submit(__('labels.frontend.auth.login_button'),['btn btn-warning mt-3']) }} Back To Home

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

Social login only as customer

Are you new customer? Sign Up here.

or

Are you new Service Provider? Sign Up here.

{{ html()->form()->close() }}
{!! $socialiteLinks !!}
@endsection