@extends('layouts.minimal') @section('title') Login @endsection @section('content')
@component('components.logo') @endcomponent
@if (! $block)
@if (session()->has('timeout'))
{{ __("Your account has been timed out for security.") }}
@endif @if (session()->has('login-error'))
{{ session()->get('login-error')}}
@endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endif @foreach ($addons as $addon) @include($addon->view, $addon->data) @endforeach @if(isset($footer)) {!! $footer !!} @endif
@php $loginFooterSetting = \ProcessMaker\Models\Setting::byKey('login-footer'); @endphp @if ($loginFooterSetting)
{!! $loginFooterSetting->config['html'] !!}
@endif @endsection @section('js') @endsection @section('css') @endsection