@extends('front.layout') @section('meta-description', !empty($seo) ? $seo->login_meta_description : '') @section('meta-keywords', !empty($seo) ? $seo->login_meta_keywords : '') @section('pagename') - {{__("Login")}} @endsection @section('breadcrumb-title') {{__("Login")}} @endsection @section('breadcrumb-link') {{__("Login")}} @endsection @section('content')

{{__('login')}}

@csrf
{{__('Email Address')}}* @if(Session::has('err'))

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

@endif @error('email')

{{ $message }}

@enderror
{{__('Password')}} * @error('password')

{{ $message }}

@enderror
@if ($bs->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif
@endsection