File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/emails/auth/passwordRecovery.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;';
?>
@extends('emails.layouts.tops')
@section('title')
{{ Lang::get('emails/auth/passwordRecovery.title',['topsName' => Lang::get('tops.name_without_bv')]) }}
@endsection
@section('content')
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="{{ $h2AsCell }}">
{{ Lang::get('emails/auth/passwordRecovery.title' ,['topsName' => Lang::get('tops.name_without_bv')]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/auth/passwordRecovery.intro') }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
<a style="color:#00a6ff;" href="{{ url('/' . $shop->getPageService()->page('customerPasswordRecovery')->route . '/reset?token=' . $token
.(\Session::has('origin')?'&origin='.\Session::pull('origin'):'')
) }}">
{{ url('/' .$shop->getPageService()->page('customerPasswordRecovery')->route . '/reset?token=' . $token ) }}
</a>
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">
{{ Lang::get('emails/auth/passwordRecovery.expire', ['expire' => Config::get('auth.reminder.expire', 60)]) }}
</td>
</tr>
<tr>
<td style="{{ $pAsCell }}">{{Lang::get('emails/global.signature',['topsName' => Lang::get('tops.name_without_bv')]) }}</td>
</tr>
</table>
@endsection