@extends('auth.layouts.master') @section('title', !empty(sys_settings('login_seo_title')) ? sys_settings('login_seo_title') : __('Login')) @section('content')

{{ __('Login into Account') }}

{{ __('Sign in into your account using your email and passcode.') }}

@include('auth.partials.error') @if(session()->has('mail_sent_success'))
  • {{ session()->get('mail_sent_success') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf
@if(has_restriction())
{!! 'You are about to login into demo application to see the platform.' !!}
@endif
@if(has_recaptcha()) @endif
@if(allowed_signup())
{{ __('New on our platform?') }} {{ __('Create an account') }}
@endif @include('auth.partials.social-auth', ['type' => 'login'])
@include('auth.partials.socials')
@endsection @if (has_recaptcha()) @push('scripts') @endpush @endif