@extends('dashboard.layouts.auth') @section('title', __('backend.signedInToControl')) @section('content')
@if(Helper::GeneralSiteSettings("style_logo_" . @Helper::currentLanguage()->code) !="") code)) }}"> @else @endif
{{ __('backend.signedInToControl') }}
{{ csrf_field() }} @if($errors ->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif @if(config('smartend.nocaptcha_status'))
{!! NoCaptcha::renderJs(@Helper::currentLanguage()->code) !!} {!! NoCaptcha::display() !!}
@endif
@if(config('smartend.facebook_status') && config('smartend.facebook_id') && config('smartend.facebook_secret')) {{ __('backend.loginWithFacebook') }} @endif @if(config('smartend.twitter_status') && config('smartend.twitter_id') && config('smartend.twitter_secret')) {{ __('backend.loginWithTwitter') }} @endif @if(config('smartend.google_status') && config('smartend.google_id') && config('smartend.google_secret')) {{ __('backend.loginWithGoogle') }} @endif @if(config('smartend.linkedin_status') && config('smartend.linkedin_id') && config('smartend.linkedin_secret')) {{ __('backend.loginWithLinkedIn') }} @endif @if(config('smartend.github_status') && config('smartend.github_id') && config('smartend.github_secret')) {{ __('backend.loginWithGitHub') }} @endif @if(config('smartend.bitbucket_status') && config('smartend.bitbucket_id') && config('smartend.bitbucket_secret')) {{ __('backend.loginWithBitbucket') }} @endif @if(Helper::GeneralWebmasterSettings("register_status")) {{ __('backend.createNewAccount') }} @endif @if(config('smartend.mail_driver') != "" && config('smartend.mail_username') !="" && config('smartend.mail_password')) @endif
@endsection