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

{{ ' My Profile' }}

@csrf
@if($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('unique'))
{{ $errors->first('unique') }}
@endif
@if ($errors->has('average_ratings'))
{{ $errors->first('average_ratings') }}
@endif
@if ($associated_with != '' || $associated_with != null)
@if ($errors->has('average_ratings'))
{{ $errors->first('average_ratings') }}
@endif
@endif
@if ($errors->has('pincode'))
{{ $errors->first(' pincode') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('clinic_name'))
{{ $errors->first('clinic_name') }}
@endif
@if($errors->has('clinic_address'))
{{ $errors->first('clinic_address') }}
@endif
@if($profile->get_doctor_details->ovum_pickup_video) @endif
@if( $profile->get_doctor_details->embryo_transfer_video) @endif
@if( $profile->get_doctor_details->ivf_information_video) @endif

{{ 'Doctor Documents' }}

Photo Id
@if ($profile->get_doctor_details->photo_id_is_approved == 'Approved')
Approved
@elseif($profile->get_doctor_details->photo_id_is_approved=='Pending')
Pending
@elseif($profile->get_doctor_details->photo_id_is_approved=='Rejected')
Rejected
@else
Pending
@endif
Registration Proof
@if ($profile->get_doctor_details->registration_proof_is_approved == 'Approved')
Approved
@elseif($profile->get_doctor_details->registration_proof_is_approved=='Pending')
Pending
@elseif($profile->get_doctor_details->registration_proof_is_approved=='Rejected')
Rejected
@else
Pending
@endif

{{ 'Change Password' }}

@csrf
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@stop @section('script') @stop