@extends('layout.master') @section('css') @stop @section('content')
@csrf

Edit Patient Details

@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('patient_name'))
{{ $errors->first('patient_name') }}
@endif
@if ($errors->has('patient_email'))
{{ $errors->first('patient_email') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('pincode'))
{{ $errors->first('pincode') }}
@endif
@if ($errors->has('conceivedate'))
{{ $errors->first('conceivedate') }}
@endif
@if ($errors->has('ovumpickup_date'))
{{ $errors->first('ovumpickup_date') }}
@endif
@if ($errors->has('ovumtransfer_date'))
{{ $errors->first('ovumtransfer_date') }}
@endif
@if ($errors->has('assosiate_type'))
{{ $errors->first('assosiate_type') }}
@endif
@if(($patient->is_three_day_activation==1) || (is_null($is_pin_used))) @php $activation_expiry_date = \Carbon\Carbon::parse($patient->activation_expiry_date); @endphp
@if(($activation_expiry_date->lt(\Carbon\Carbon::now()))) Free Trail (Expired) @else Free Trail (Active) @endif
@else
Paid - Code
@endif
@if($patient->is_three_day_activation==1)
@endif
@stop @section('script') @stop