@extends('sendportal::layouts.base') @section('htmlBody')
@include('auth.partials.logo')
{{ __('Login') }}
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(config('sendportal-host.auth.password_reset')) {{ __('Forgot Your Password?') }} @endif
@if(config('sendportal-host.auth.register'))

{{ __('Don\'t have an account?') }} {{ __('Register') }}

@endif
@endsection