@extends('front.layout') @section('meta-keywords', "$seo->meta_keywords") @section('meta-description', "$seo->meta_description") @section('content')

{{ __('Login') }}

{{ __('Login') }}

{{ __('Login to your account to continue.') }}

@if(Session::has('error'))

{{ Session::get('error') }}

@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@csrf
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('password'))

{{ $errors->first('password') }}

@endif
{{ __('Forgot Password ?') }} @if ($visibility->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif

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

@endsection