@extends('frontend.layouts.app') @section('content')

{{ translate('Login to your account.')}}

@csrf @if (addon_is_activated('otp_system') && env("DEMO_MODE") != "On")
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif
@if (env("DEMO_MODE") == "On")
{{ translate('Seller Account')}}
{{ translate('Customer Account')}}
{{ translate('Delivery Boy Account')}}
@endif @if(get_setting('google_login') == 1 || get_setting('facebook_login') == 1 || get_setting('twitter_login') == 1)
{{ translate('Or Login With')}}
@endif

{{ translate('Dont have an account?')}}

{{ translate('Register Now')}}
@endsection @section('script') @endsection