@extends('layouts.app') @section('content')
{{ trans('general.title_home_login') }} @if (session('login_required'))
{{trans('auth.login_required')}}
@endif @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
@include('includes.footer-tiny')
@endsection @section('javascript') @endsection