@extends('layouts.auth') @section('title', __('Sign-in')) @section('content') @if( recaptcha() ) @push('header') @endpush @endif

{{ __('Sign in') }}{{ __('with your') }} {{ site_info('name') }} {{ __('Account') }}

@csrf @include('layouts.messages')
@if(! is_maintenance())
{{ __('Forgot password?')}}
@endif @if( recaptcha() ) @endif
@if(! is_maintenance()) @if(Schema::hasTable('settings')) @if ( (get_setting('site_api_fb_id', env('FB_CLIENT_ID', '')) != '' && get_setting('site_api_fb_secret', env('FB_CLIENT_SECRET', '')) != '') || (get_setting('site_api_google_id', env('GOOGLE_CLIENT_ID', '')) != '' && get_setting('site_api_google_secret', env('GOOGLE_CLIENT_SECRET', '')) != '') )
{{__('Or Sign in with')}}
@endif @endif
{{__('Don’t have an account?')}} {{__('Sign up here')}}
@endif
@endsection