@extends('layouts.auth') @section('metadata') {{ __($metadata->login_title) }} @endsection @section('content')
@csrf @if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif @if (config('settings.oauth_login') == 'enabled')
{{__('Sign In with Social Media')}}
{{ __('or sign in 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')

{{ __('New to ') }} {{ config('app.name') }}?

{{ __('Sign Up') }} @endif
@endsection @section('js') @if (config('services.google.recaptcha.enable') == 'on') @endif @endsection