@include('backEnd.includes.head')
{{ trans('backLang.signedInToControl') }}
{{ csrf_field() }} @if($errors ->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

@if(env("FACEBOOK_STATUS") && env("FACEBOOK_ID") && env("FACEBOOK_SECRET")) {{ trans('backLang.loginWithFacebook') }} @endif @if(env("TWITTER_STATUS") && env("TWITTER_ID") && env("TWITTER_SECRET")) {{ trans('backLang.loginWithTwitter') }} @endif @if(env("GOOGLE_STATUS") && env("GOOGLE_ID") && env("GOOGLE_SECRET")) {{ trans('backLang.loginWithGoogle') }} @endif @if(env("LINKEDIN_STATUS") && env("LINKEDIN_ID") && env("LINKEDIN_SECRET")) {{ trans('backLang.loginWithLinkedIn') }} @endif @if(env("GITHUB_STATUS") && env("GITHUB_ID") && env("GITHUB_SECRET")) {{ trans('backLang.loginWithGitHub') }} @endif @if(env("BITBUCKET_STATUS") && env("BITBUCKET_ID") && env("BITBUCKET_SECRET")) {{ trans('backLang.loginWithBitbucket') }} @endif @if(Helper::GeneralWebmasterSettings("register_status")) {{ trans('backLang.createNewAccount') }} @endif
@include('backEnd.includes.foot')