You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							76 lines
						
					
					
						
							2.7 KiB
						
					
					
				
			
		
		
	
	
							76 lines
						
					
					
						
							2.7 KiB
						
					
					
				
 | 
						|
<style>
 | 
						|
    .main-column{
 | 
						|
        display:flex;
 | 
						|
        width:100%;
 | 
						|
    }
 | 
						|
    .column-one{
 | 
						|
        width:50%;
 | 
						|
    }
 | 
						|
</style>
 | 
						|
 | 
						|
<h1>Persional Details</h1>
 | 
						|
<br />
 | 
						|
<div class="main-column" style = "display:block; width:100%;">
 | 
						|
  <div class="column-one" style = "display:block; width:100%;">
 | 
						|
 | 
						|
    <b>Full Name:</b> {{ $enquiry->first_name . ' ' .(!is_null($enquiry->middle_name) ? $enquiry->middle_name .' ' :''). $enquiry->last_name }}<br /><br />
 | 
						|
    <b>Email:</b> {{ $enquiry->email }}<br /><br />
 | 
						|
    <b>Phone:</b> {{$enquiry->phone}}<br /><br />
 | 
						|
    <b>Address:</b> {{$enquiry->address}}<br /><br />
 | 
						|
    <b>Date of Birth:</b> {{$enquiry->dob}}<br /><br />
 | 
						|
    <b>Country of Birth:</b> {{$enquiry->cob}}<br /><br />
 | 
						|
    <b>Gender:</b> {{$enquiry->gender}}<br /><br />
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<h1>Additional Details</h1>
 | 
						|
<br />
 | 
						|
<div class="main-column" style = "display:block; width:100%;">
 | 
						|
  <div class="column-one" style = "display:block; width:100%;">
 | 
						|
     <b>Highest Qualification:</b> {{ $enquiry->highest_qualification }}<br /><br />
 | 
						|
     @if(!is_null($enquiry->stream))
 | 
						|
     <b>Stream:</b> {{$enquiry->stream}}<br /><br />
 | 
						|
     @endif
 | 
						|
    <b>% or GPA:</b> {{$enquiry->gpa}}<br /><br />
 | 
						|
    <b>Graduated year:</b> {{$enquiry->graduate_year}}<br /><br />
 | 
						|
    <b>Gap:</b> {{$enquiry->gap}}<br /><br />
 | 
						|
    <b>Current Status:</b> {{$enquiry->current_status}}<br /><br />
 | 
						|
    <b>Work Experience:</b> {{$enquiry->work_experience}}<br /><br />
 | 
						|
    @if(!is_null($enquiry->work_experience))
 | 
						|
    <b>Work Experience Details:</b> {{$enquiry->work_experience_details}}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->salary_mode))
 | 
						|
    <b>Salary Mode:</b> {{$enquiry->salary_mode}}<br /><br />
 | 
						|
    @endif
 | 
						|
    <b>Test Score:</b> {{$enquiry->test_score}}<br /><br />
 | 
						|
    <b>Marital Status:</b> {{$enquiry->marital_status}}<br /><br />
 | 
						|
    @if(!is_null($enquiry->married_date))
 | 
						|
    <b>Married Date:</b> {{$enquiry->married_date}}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->spouse_academics))
 | 
						|
    <b>Spouse Academic:</b> {{$enquiry->spouse_academics}}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->spouse_work_experience))
 | 
						|
    <b>Spouse Work Experience:</b> {{ $enquiry->spouse_work_experience }}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->spouse_salary_mode))
 | 
						|
    <b>Spouse Salary Mode:</b> {{ $enquiry->spouse_salary_mode }}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->immigration_history))
 | 
						|
    <b>Immigration History:</b> {{ $enquiry->immigration_history }}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->desired_study_field))
 | 
						|
    <b>Desired Field of Study:</b> {{ $enquiry->desired_study_field }}<br /><br />
 | 
						|
    @endif
 | 
						|
    @if(!is_null($enquiry->desired_location))
 | 
						|
    <b>Desired Location:</b> {{ config('custom.states')[$enquiry->desired_location] }}<br /><br />
 | 
						|
    @endif
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
 |