mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 05:27:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			520 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('emails.master_user')
 | 
						|
 | 
						|
@section('body')
 | 
						|
    <div>
 | 
						|
        {{ trans('texts.email_salutation', ['name' => $userName]) }}
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        {{ trans("texts.security_code_email_line1") }}
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        <center><h2>{{ $code }}</h2></center>
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        {{ trans("texts.security_code_email_line2") }}
 | 
						|
    </div>
 | 
						|
     
 | 
						|
    <div>
 | 
						|
        {{ trans('texts.email_signature') }} <br/>
 | 
						|
        {{ trans('texts.email_from') }}
 | 
						|
    </div>
 | 
						|
@stop
 |