@extends('admin::auth.layout') @section('content') @if (isset($errors) and $errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif

{{ trans('admin::messages.administration') }}

{!! csrf_field() !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (config('settings.security.recaptcha_activation'))
{!! Recaptcha::render(['lang' => config('app.locale')]) !!}
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
{{ trans('admin::messages.forgot_your_password') }}
@endsection