@extends('layouts.empty') @section('content')
@include('layouts.partials.logo')
@include('partials.message')
{{ __('Login') }}
@if(\Config::get('settings.login_status')==0)
Login page under maintenance
@else
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endif
@endsection