@extends('backend.layout.master-tailwind') @section('title', __('Login Page Settings')) @section('admin_styles') @endsection @section('content')

{{ __('Login Page Settings') }}

{{ __('Customize the login page appearance and options') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
{{-- Social Login toggle --}}
{{ __('Social Login Master Switch') }}
{{ __('Disable to prevent all social logins.') }}
{{-- Google Login toggle --}}
{{ __('Google Login') }}
{{ __('Enable/Disable Google Login Button') }}
{{-- Facebook Login toggle --}}
{{ __('Facebook Login') }}
{{ __('Enable/Disable Facebook Login Button') }}
{{-- Sidebar Image --}}
{{ __('Recommended size: 660x908') }} @php $sidebarImgId = get_static_option('login_page_sidebar_image'); $sidebarImg = get_attachment_image_by_id($sidebarImgId, null, false); @endphp @if(!empty($sidebarImg))
@endif
@can('login-page-settings-update')
@endcan
@endsection @section('script') @endsection