@extends('design_1.web.auth.theme_1.layout') @section('page_content')
{{ trans('update.welcome_back') }} 👋

{{ trans('update.login_to_your_account') }}

{{-- Source --}} @include('design_1.web.auth.theme_1.includes.login_methods')
@error('password')
{{ $message }}
@enderror
@if(!empty(getGeneralSecuritySettings('captcha_for_login')))
@include('design_1.web.includes.captcha_input')
@endif
@if(session()->has('login_failed_active_session'))
{{ session()->get('login_failed_active_session')['title'] }}
{{ session()->get('login_failed_active_session')['msg'] }}
@endif
{{ trans('update.or_continue_with') }}
@if(!empty(getFeaturesSettings('show_google_login_button'))) google svg @endif @if(!empty(getFeaturesSettings('show_facebook_login_button'))) facebook svg @endif
{{ trans('auth.dont_have_account') }}
{{ trans('auth.signup') }}
@endsection