@extends('master.front') @section('title') {{__('Login')}} @endsection @section('content')
@csrf

{{__('Login')}}

@error('login_email')

{{$message}}

@enderror
@error('login_password')

{{$message}}

@enderror
{{__('Forgot password?')}}
@if($setting->facebook_check == 1) @endif @if($setting->google_check == 1) {{ __('Google login') }} @endif

{{__('Register')}}

@csrf
@error('first_name')

{{$message}}

@endif
@error('last_name')

{{$message}}

@endif
@error('email')

{{$message}}

@endif
@error('phone')

{{$message}}

@endif
@error('password')

{{$message}}

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

{{__("$errmsg")}}

@endif
@endif
@endsection