@extends('layouts.pdf') @section('content')
@if($lang=='spa') Detalle del cliente @else Client Detail @endif
@if($lang=='spa') identificación @else Id @endif{{$patient->pid}}
@if($lang=='spa') nombre @else Name @endif{{$patient->fname}} {{$patient->lname}}
@if($lang=='spa') correo electrónico @else Email @endif{{$patient->email}}
@if($lang=='spa') nacimiento @else DOB @endif{{$patient->DOB}}
@if($lang=='spa') Número de contacto @else Contact No @endif{{$patient->contact_no}}
@if($lang=='spa') Género @else Gender @endif{{$patient->sex}}
@if($lang=='spa') Calle @else Street @endif{{$patient->street}}
@if($lang=='spa') Ciudad @else City @endif{{$patient->city}}
@if($lang=='spa') Estado @else State @endif{{$patient->state}}
@if($lang=='spa') código postal @else Zip Code @endif{{$patient->postal_code}}
@if($lang=='spa') Formulario de encuesta @else Survey Form @endif
@foreach($data as $datas) @endforeach
@if($lang=='spa') Pregunta @else Question @endif @if($lang=='spa') Respuesta @else Response @endif
{{$loop->index+1}}. @if($lang=='spa') {{$datas->question_spanish}} @else {{$datas->question}} @endif  @if($lang=='spa') Sí @else Yes @endif  No  @if($lang=='spa') no lo sé @else Don't Know @endif
@endsection