@extends('layouts.dashboard') @section('content')
@if($lang=='spa') Encuesta de Salud @else Health Survey @endif @if($lang=='spa') Descargar formulario @else Download Form @endif
@if (session('success'))
{{session('success')}}
@endif
@if($patient)
@if($lang=='spa') Detalle del cliente @else Client Detail @endif
@if($lang=='spa') identificación @else Id @endif @if($lang=='spa') nombre @else Name @endif @if($lang=='spa') correo electrónico @else Email @endif @if($lang=='spa') nacimiento @else DOB @endif @if($lang=='spa') Número de contacto @else Contact No @endif @if($lang=='spa') Género @else Gender @endif @if($lang=='spa') Calle @else Street @endif @if($lang=='spa') Ciudad @else City @endif @if($lang=='spa') Estado @else State @endif @if($lang=='spa') código postal @else Zip Code @endif
{{$patient->pid}} {{$patient->fname}} {{$patient->lname}} {{$patient->email}} {{$patient->DOB}} {{$patient->contact_no}} {{$patient->sex}} {{$patient->street}} {{$patient->city}} {{$patient->state}} {{$patient->postal_code}}
@else
@if($lang=='spa') Cliente de búsqueda @else Search Client @endif
@include('search.search-patient-form',['lang'=>$lang]) @endif
@endsection @section('content') @endsection