@extends('layouts.admin') @section('title',__('adminstaticwords.SocialLogin')) @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@php $fb_login_status = App\Config::select('fb_login')->where('id','=',1)->first(); $google_login_status = App\Config::select('google_login')->where('id','=',1)->first(); $gitlab_login_status = App\Config::select('gitlab_login')->where('id','=',1)->first(); $amazon_login_status = App\Config::select('amazon_login')->where('id','=',1)->first(); @endphp
{{__('adminstaticwords.FacebookLoginSetting')}}
{{ csrf_field() }}
fb_login == 1 ? 'checked' : "" }} type="checkbox" class="toggle-input" name="fb_check" id="fb_check">
{{__('adminstaticwords.GoogleLoginSetting')}}
{{ csrf_field() }}
google_login == 1 ? 'checked' : "" }} type="checkbox" class="toggle-input" name="google_login" id="google_login" >
{{__('adminstaticwords.GitLabLoginSetting')}}
{{ csrf_field() }}
gitlab_login == 1 ? 'checked' : "" }} type="checkbox" class="toggle-input" name="git_lab_check" id="git_lab_check">
{{__('adminstaticwords.AmazonLoginSetting')}}
{{ csrf_field() }}
amazon_login == 1 ? 'checked' : "" }} type="checkbox" class="toggle-input" name="amazon_lab_check" id="amazon_lab_check">
@endsection @section('custom-script') @endsection