@extends('admin.layouts.auth') @section('content') @if (isset($errors) && $errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
{!! csrf_field() !!} {{-- email --}}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{-- password --}}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{-- confirm_password --}}
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
{{-- captcha --}} @include('layouts.inc.tools.captcha') {{-- remember me & password recover --}} {{-- button --}}
@endsection