@extends('backend.auth.master') @section('title') {{ $data['title'] }} @endsection @section('content')

{{ _trans('landlord.login') }}

{{ _trans('landlord.welcome back please login to your account') }}

@csrf

@error('email')

{{ $message }}

@enderror

@error('password')

{{ $message }}

@enderror
@if (setting('recaptcha_status'))
{!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response'))

{{ $errors->first('g-recaptcha-response') }}

@endif
@endif
{{ _trans('landlord.forgot password') }}
@if (\Config::get('app.APP_DEMO'))
@php $superadmin = \App\Models\User::where('role_id', 1)->first(); @endphp @if($superadmin != null)
@csrf
@endif @php $landloard = \App\Models\User::where('role_id', 4)->first(); @endphp @if($landloard != null)
@csrf
@endif @php $tenant = \App\Models\User::where('role_id', 5)->first(); @endphp @if($tenant != null)
@csrf
@endif
@endif

{{ _trans('common.dont have an account') }} {{ _trans('common.create an account') }}

@endsection @section('script') {!! NoCaptcha::renderJs() !!} @endsection