Enter credentials for the super admin account.

@if($errors->hasAny())
There was an issue. This is the error message:
{{$errors->first()}}
@endif
@csrf
@if($errors->has('email'))
{{$errors->get('email')[0]}}
@endif
@if($errors->has('password'))
{{$errors->get('password')[0]}}
@endif
@if($errors->has('password_confirmation'))
{{$errors->get('password_confirmation')[0]}}
@endif
Continue