@extends('layouts.etemplate') @section('auth-body')
@csrf Log in
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (env('DEMO_MODE') == true)
Demo Login
Email Password
admin@eaccount.xyz 1234
projectmanager@eaccount.xyz 1234
vouchermanage@eaccount.xyz 1234
@endif
@stop