@extends('frontend.email.email-master') @section('content')

{{__('Hi')}} {{ucwords($details['name']) }},

{{__('This is an e-mail from')}} {{ config('app.name') }}.

{{-- Content Start --}}

{{__('An email change request has been made by Support Manager. Click approve to accept the change request or you may decline to cancel the request')}}.

{{__('Old Email')}}: {{ $details['email'] }}

{{__('New Email')}}: {{ $details['NEW_EMAIL_ADDRESS'] }}

{{__('Please click on the button to generate password for your new account')}}.

@include('frontend.email.inc.yes_no_button', ['url' => ['yes' => route('doChangeEmailAddress', ['approve', $details['token'], $details['email']]), 'no' => route('doChangeEmailAddress', ['cancel',$details['token'], $details['email']])], 'yes' => 'Approve', 'no' => 'Decline']) {{-- Content End --}}

{{__("If you don't recognize this activity, please disable your account and")}} {{__('Contact Us')}} {{__('immediately')}}.

@endsection