@extends('layouts.backend') @inject('app', 'Illuminate\Support\Facades\App') @section('content')

{{__('messages.login')}}

{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! NoCaptcha::display(['data-theme' => 'dark']) !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
{!! NoCaptcha::renderJs($app::getLocale()) !!} @endsection