@extends('auth.master') @section('additional_head_tags') {{ __('Login') }} @if(captcha_is_enabled() && captcha_is('google')) {!! google_captcha_js() !!} @endif @endsection @section('title', __('Login to your account')) @section('content')
@if(array_filter(array_column(config('services'), 'enabled')))
{{ __('Or') }}
@endif
@csrf
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@error('captcha')
{{ $message }}
@enderror @error('g-recaptcha-response')
{{ $message }}
@enderror @if(captcha_is_enabled('login'))
{!! render_captcha() !!} @if(captcha_is('mewebstudio')) @endif
@endif

{{ __('Don\'t have an account') }} ?

{{ __('Create an account') }}
@endsection