@extends('layouts.auth') @section('content')
@csrf

{{ __('Welcome Back to') }} {{ config('app.name') }}

@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif @if (config('settings.oauth_login') == 'enabled')
@if(config('services.facebook.enable') == 'on')@endif @if(config('services.twitter.enable') == 'on')@endif @if(config('services.google.enable') == 'on')@endif @if(config('services.linkedin.enable') == 'on')@endif
or login with email
@endif
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@if (config('settings.registration') == 'enabled') {{ __('Sign Up') }} @endif

{{ __('By continuing, you agree to our') }} {{ __('Terms and Conditions') }} {{ __('and') }} {{ __('Privacy Policy') }}

branding logo
@endsection @section('js') @if (config('services.google.recaptcha.enable') == 'on') @endif @endsection