@extends('emails.layouts.main') @section('title', 'Login Assistance') @section('content') {{-- Salutation with user's first name --}}

Hello, {{ explode(' ', $user->name)[0] ?? $user->name }}

{{-- Email body paragraphs --}}

It looks like you're having difficulty signing in.

Not to worry. We're here to help.

To get you back into your Readingful account, please simply use the button below to automatically log in. Upon doing so, you will be asked to set a new password.

{{-- Call-to-action button --}}
Log In to Readingful
{{-- Security note --}}

If you didn't request this password reset, you can safely ignore this email. Your password won't be changed.

{{-- Link expiration notice --}} @if(isset($resetUrl))

This password reset link will expire in {{ config('auth.passwords.users.expire', 60) }} minutes.

@endif @endsection