@extends('admin.layouts.blank') @section('content')

{{ translate('Welcome to') }} {{ env('APP_NAME') }}

{{ translate('Login to your account.') }}

@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(env('MAIL_USERNAME') != null && env('MAIL_PASSWORD') != null) @endif
@if (env("DEMO_MODE") == "On")
admin@example.com 12345678
@endif
@endsection @section('script') @endsection