@extends('emails.master_contact')
@section('body')
{{ trans('texts.reset_password') }}
@include('partials.email_button', [
'link' => URL::to(SITE_URL . "/client/password/reset/{$token}"),
'field' => 'reset',
'color' => '#36c157',
])
@if (Utils::isNinja() || ! Utils::isWhiteLabel())
{{ trans('texts.email_signature') }}
{{ trans('texts.email_from') }}
@endif
{{ trans('texts.reset_password_footer', ['email' => env('CONTACT_EMAIL', CONTACT_EMAIL)]) }}
@stop