@error('error')
{{ $message }}
@enderror
@error('username')
{{ $message }}
@enderror
{!! html()->form('POST', '/admin/login')->id('login_form')->open() !!}
{!! html()->hidden('g-recaptcha-response')->class('g-recaptcha-response') !!}
{!! html()->text('username')->id('username')->class('form-control login_input input') !!}
{!! html()->password('password')->id('password')->class('form-control login_input input') !!}
@if (Illuminate\Support\Facades\Route::has('admin.password.request'))
@endif
{!! html()->submit('Login')->class('btn btn-primary btn-block') !!}
{!! html()->form()->close() !!}