@extends('frontend.layouts.web.app') @section('style') @endsection @section('content')

{{translate('Welcome')}}

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

@csrf @if ( env("DEMO_MODE") != "On")
@if ($errors->has('email') || $errors->has('phone')) {{ $errors->first('email')? $errors->first('phone'):''}} @endif
@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 || get_setting('apple_login') == 1) @endif
@endsection @section('script') @endsection