2017-02-27 16:55:40 +02:00
|
|
|
@extends('emails.master_contact')
|
2016-03-04 22:22:54 -05:00
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
<div>
|
|
|
|
|
{{ trans('texts.reset_password') }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<center>
|
|
|
|
|
@include('partials.email_button', [
|
2017-05-09 19:46:52 +03:00
|
|
|
'link' => URL::to(SITE_URL . "/client/password/reset/{$token}"),
|
2016-03-04 22:22:54 -05:00
|
|
|
'field' => 'reset',
|
|
|
|
|
'color' => '#36c157',
|
|
|
|
|
])
|
|
|
|
|
</center>
|
|
|
|
|
</div>
|
2017-02-27 16:55:40 +02:00
|
|
|
@if (Utils::isNinja() || ! Utils::isWhiteLabel())
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
|
|
|
{{ trans('texts.email_from') }}
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
2016-03-04 22:22:54 -05:00
|
|
|
|
|
|
|
|
<div>
|
2016-10-06 17:25:45 +03:00
|
|
|
{{ trans('texts.reset_password_footer', ['email' => env('CONTACT_EMAIL', CONTACT_EMAIL)]) }}
|
2016-03-04 22:22:54 -05:00
|
|
|
</div>
|
2016-05-15 23:16:08 +03:00
|
|
|
@stop
|