@extends('layouts.auth') @php $logo=asset(Storage::url('uploads/logo/')); $company_logo=Utility::getValByName('company_logo'); $settings = Utility::settings(); @endphp @push('custom-scripts') @if(env('RECAPTCHA_MODULE') == 'yes') {!! NoCaptcha::renderJs() !!} @endif @endpush @section('page-title') {{__('Login')}} @endsection @section('auth-lang') @endsection @section('content')

{{__('Sign in')}}

{{Form::open(array('route'=>'vender.login','method'=>'post','id'=>'loginForm'))}} @csrf
@error('email') @enderror
@error('password') @enderror
@if(env('RECAPTCHA_MODULE') == 'yes')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif
{{ __('Forgot Your Password?') }}
{{--

{{__("Don't have an account?")}} {{__('Register')}}

--}}
{{Form::close()}} @endsection