@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
@include('layouts.inc.tools.recaptcha')
{{ trans('admin::messages.forgot_your_password') }}
@endsection