@extends('layouts.app') @section('title') {{trans('auth.login')}} -@endsection @section('content')

{{trans('auth.welcome_back')}}

{{ trans('auth.login_welcome') }} @if(session('login_required'))
{{trans('auth.login_required')}}
@endif @include('errors.errors-forms') @if($settings->facebook_login == 'on' || $settings->google_login == 'on' || $settings->twitter_login == 'on')
@if ($settings->facebook_login == 'on') {{ __('auth.login_with') }} Facebook @endif @if ($settings->twitter_login == 'on') {{ __('auth.login_with') }} Twitter @endif @if ($settings->google_login == 'on') {{ __('auth.login_with') }} Google @endif
{{__('general.or')}} @endif
@csrf @if ($settings->captcha == 'on') @captcha @endif
@if ($settings->captcha == 'on') {{trans('auth.protected_recaptcha')}} {{trans('general.privacy')}} - {{trans('general.terms')}} @endif
@if ($settings->registration_active == '1') @endif
@endsection