HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/contact/askHelp.blade.php
<?php

$pAsCell = 'font-size: 12px; font-family: Arial, sans-serif; line-height: 16px; padding-bottom: 12px;';
$h2AsCell = 'font-size: 20px; font-family: Arial, sans-serif; line-height: 24px; padding-bottom: 20px; font-weight:bold; color: #00b0ea;';
$vAT = 'vertical-align: top';
?>

@extends('emails.layouts.tops')

@section('title')
    {{ \Lang::get('emails/customer/askHelp.subject',['website'=>$website] )}}
@endsection

@section('content')
    {{ \Lang::get('emails/customer/askHelp.content',['website'=>$website] )}}
    <table>
        <tr>

        </tr>
        <tr>
            <td width="120px;">
                {{\lang::get('emails/customer/contact.name')}}
            </td>
            <td>
                {{$name}}
            </td>
        </tr>
        <tr>
            <td>
                {{\lang::get('emails/customer/contact.email')}}
            </td>
            <td>
                {{$email}}
            </td>
        </tr>
        <tr>
            <td>
                {{\lang::get('emails/customer/contact.phone')}}
            </td>
            <td>
                {{$phone}}
            </td>
        </tr>
        <tr>
            <td>
                {{\lang::get('emails/customer/askHelp.brand')}}
            </td>
            <td>
                {{$brand}}
            </td>
        </tr>
        <tr>
            <td>
                {{\lang::get('emails/customer/askHelp.dimensions')}}
            </td>
            <td>
                {{$dimensions}}
            </td>
        </tr>
        <tr>
            <td style="{{$vAT }}">
                {{\lang::get('emails/customer/askHelp.question')}}
            </td>
            <td>
                {{$question}}
            </td>
        </tr>
        <tr>
            <td style="{{$vAT }}">
                {{\lang::get('emails/customer/askHelp.image')}}
            </td>
            <td>
                <img src="{{$image_location}}" width="390px"/>
                <br />
                {{Lang::get('emails/customer/AskHelp.full_image')}}<br />
                <a href="{{$image_location}}">{{$image_location}}</a>

            </td>
        </tr>
    </table>

@endsection