@extends('auth.layouts') @section('title', trans('auth.login')) @section('content')
@csrf @if($errors->any()) @endif @if (Session::get('successMsg')) @endif
@switch(sysConfig('is_captcha')) @case(1)
{{trans('auth.captcha')}}
@break @case(2)
{!! Geetest::render() !!}
@break @case(3)
{!! NoCaptcha::display() !!} {!! NoCaptcha::renderJs(Session::get('locale')) !!}
@break @case(4)
{!! HCaptcha::display() !!} {!! HCaptcha::renderJs(Session::get('locale')) !!}
@break @default @endswitch
{{trans('auth.forget_password')}}
@if(sysConfig('is_register'))

{{trans('auth.register_tip')}} {{trans('auth.register')}}

@endif @endsection @section('script') @endsection