@extends('EcomAuthViews::layouts.authentication.layout') @section('content') @php $country_code = country()->code(); @endphp
input('verify')!=null && request()->input('verify')==true) action="{{route('account-login-verify')}}" @else action="{{route('account-login-post')}}" @endif method="POST"> @if(request()->input('verify')!=null && request()->input('verify')==true) @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "full", "type" => "text", "label" =>"Please Verify your Email to continue" ]) @endcomponent @endif @csrf @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "full", "type" => "text", "label" => ___('authentication.email') ]) @error('email') {{$message}} @enderror @endcomponent @component('EcomGeneralViews::components.form.input', [ "parentClass" => "", "size" => "full", "type" => "submit", "label" => "" ]) @endcomponent
@if(request()->input('verify')==null) @if(isset($config['providers']['facebook']))
Continue with Facebook
@endif @if(isset($config['providers']['google']))
Continue with Google
@endif @if(isset($config['providers']['apple']))
Continue with Apple
@endif @if(in_array('phone',$config['auth_types']))
Continue with Phone
@endif @endif @endsection @section('scripts') @endsection