@extends('auth.master') @section('title', trans('auth.login.title')) @section('content')
@if (Session::has('msg'))
{{ Session::pull('msg') }}
@endif

@lang('auth.register-link')
@include('common.recaptcha') @php $extra = [ 'tooManyFails' => cache(sha1('login_fails_'.get_client_ip())) > 3, 'recaptcha' => option('recaptcha_sitekey'), 'invisible' => (bool) option('recaptcha_invisible'), ]; @endphp @endsection