Files
exchange-2.0/resources/views/emails/accounts/reset_password.blade.php
T
2021-06-20 13:17:02 +08:00

11 lines
890 B
PHP

@extends('emails.layout.base')
@section('content')
<h4 style="font-size: 1em;">Hello, {{ $user->first_name.' '.$user->last_name }}</h4>
<p style="font-size: 0.9em">We have received a request to reset the the password for your account on <a href="{{route('login')}}" class="bold">CIEF Exchange</a></p>
<p style="margin-top: 30px; font-size: 0.8em">Click the link below to complete the process. Note that the link expires in 24 hours</p>
<div style="margin-top: 20px;">
<a href="{{route('account.password.reset', ['token' => $attempt->token])}}"><button class="btn all-caps bg-primary no-border text-white pointer" style="font-size: 0.8em">Reset password</button></a>
</div>
<div class="all-caps hint-text" style="margin-top: 20px;"><small style="font-size: 0.7em">If you didn't perform this request you can safely ignore this email.</small></div>
@endsection