@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')
{{__('Login')}}
{{-- @if ($errors->any())
@foreach ($errors->all() as $error)
{{$error}}
@endforeach
@endif --}}
{{Form::open(array('route'=>'login','method'=>'post','id'=>'loginForm' ))}}
@csrf
@if(env('RECAPTCHA_MODULE') == 'yes')
{!! NoCaptcha::display() !!}
@error('g-recaptcha-response')
{{ $message }}
@enderror
@endif
@if($settings['enable_signup'] == 'on')
{{__("Don't have an account?")}} {{__('Register')}}
@endif
{{Form::close()}}
@endsection