@extends('layouts.guest') @section('title', __('auth.login')) @section('container')
@if(config('demo.enabled')) @endif
@include('layouts.session')
{{ app('site')['name'] }}

{{ __('auth.login_to_account') }}

{{-- CSRF Protection --}} @csrf @method('POST')
@if(false)

{{ __('auth.dont_have_account') }}

@endif
@php $appVersion = getAppVersion(); $dbVersion = getDatabaseMigrationAppVersion(); @endphp
Version: {{ $appVersion }}
@if($appVersion != $dbVersion)
Version Mismatch!!
App Version: {{ $appVersion }}, Database Version: {{ $dbVersion }}
@endif @include('auth.demo-login')
@endsection @section('js') @if(config('demo.enabled')) @endif @endsection