@extends('mails::layout') @section('title', $pageTitle ?? config('app.name')) @section('content') @if(!empty($greeting))

{{ $greeting }}

@endif @foreach($introLines ?? [] as $line)

{!! nl2br(e($line)) !!}

@endforeach @if(!empty($otpCode))

{{ $otpCode }}

@endif @if(!empty($alertType) && !empty($alertText)) @php $boxClass = match ($alertType) { 'success' => 'success-box', 'warning' => 'warning-box', 'danger' => 'danger-box', default => 'info-box', }; @endphp

{!! nl2br(e($alertText)) !!}

@endif @if(!empty($actionUrl) && !empty($actionText))

{{ $actionText }}

@endif @foreach($outroLines ?? [] as $line)

{!! nl2br(e($line)) !!}

@endforeach @endsection