@extends('emails.layouts.master')
@section('title', trans('mail.:contact_form_title', [
'country' => $msg->country,
'appName' => config('app.name')
]))
@section('content')
|
|
{{ t('Country') }} : {{ $msg->country }} {{ t('First Name') }} : {{ $msg->first_name }} {{ t('Last Name') }} : {{ $msg->last_name }} {{ t('Email Address') }} : {{ $msg->email }}{!! (isset($msg->company_name) and $msg->company_name!='') ? ' ' . t('Company Name') . ' : ' . $msg->company_name : '' !!}
{!! nl2br($msg->message) !!}
|
|
|
@endsection