@extends('admin.layouts.auth-base', ['title' => __('admin.login.title')]) @section('body')

{{ __('admin.login.title') }}

{{ __('admin.login.subtitle') }}

@if ($errors->any() && ! $errors->has('email') && ! $errors->has('password'))
{{ $errors->first() }}
@endif
@csrf
@error('email'){{ $message }}@enderror
@error('password'){{ $message }}@enderror
@endsection