@extends('auth.layouts.auth') @section('meta') @php $data = metaData('login'); @endphp @endsection @section('description') {{ $data->description }} @endsection @section('title') {{ __('login') }} @endsection @section('og:image') {{ asset($data->image) }} @endsection @section('content')
@csrf

{{ __('log_in') }}

{{ __('dont_have_account') }} {{ __('create_account') }}
@error('email') {{ __($message) }} @enderror
@error('password') {{ __($message) }} @enderror
@if (config('captcha.active'))
{!! NoCaptcha::display() !!}
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@php $google = config('zakirsoft.google_active') && config('zakirsoft.google_id') && config('zakirsoft.google_secret'); $facebook = config('zakirsoft.facebook_active') && config('zakirsoft.facebook_id') && config('zakirsoft.facebook_secret'); $twitter = config('zakirsoft.twitter_active') && config('zakirsoft.twitter_id') && config('zakirsoft.twitter_secret'); $linkedin = config('zakirsoft.linkedin_active') && config('zakirsoft.linkedin_id') && config('zakirsoft.linkedin_secret'); $github = config('zakirsoft.github_active') && config('zakirsoft.github_id') && config('zakirsoft.github_secret'); @endphp
@if ($google || $facebook || $twitter || $linkedin || $github)

{{ __('or') }}

@endif
@endsection @section('script') @endsection