@extends('layouts.auth')
@section('title', __('Sign-in'))
@section('content')
@if( recaptcha() )
@push('header')
@endpush
@endif
{{ __('Sign in') }}{{ __('with your') }} {{ site_info('name') }}
{{ __('Account') }}
@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')}}
@if(get_setting('site_api_fb_id', env('FB_CLIENT_ID', '')) != '' && get_setting('site_api_fb_secret',
env('FB_CLIENT_SECRET', '')) != '')
- {{__('Facebook')}}
@endif
@if(get_setting('site_api_google_id', env('GOOGLE_CLIENT_ID', '')) != '' &&
get_setting('site_api_google_secret', env('GOOGLE_CLIENT_SECRET', '')) != '')
- {{__('Google')}}
@endif
@endif
@endif
@endif
@endsection