17 lines
453 B
PHP
17 lines
453 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Contactformulier Bericht</title>
|
|
</head>
|
|
<body>
|
|
<h1>Nieuw bericht van {{ $data['name'] }}</h1>
|
|
<p><strong>Email:</strong> {{ $data['email'] }}</p>
|
|
<p><strong>Bericht:</strong></p>
|
|
<p>{!! nl2br(e($data['message'])) !!}</p>
|
|
|
|
@if(isset($data['video_link']))
|
|
<p><strong>Video Link:</strong> <a href="{{ $data['video_link'] }}">{{ $data['video_link'] }}</a></p>
|
|
@endif
|
|
</body>
|
|
</html>
|