mpfi
  • Hello, {{ Auth::user()->fname }}
  • {{ Auth::user()->email }}, {{ $age }}

Primary Profile Setup

@if(Auth::user()->primary_profile != NULL && Auth::user()->approved == 0 ) Verification Pending !! @elseif(Auth::user()->primary_profile != NULL && Auth::user()->approved == -1 ) Application Got Rejected!! @elseif(Auth::user()->primary_profile != NULL && Auth::user()->approved == 1 && Auth::user()->paid == 0 ) Application pending for payment!! @else Please setup you primary profile to join MPFI. @endif
@auth @if(Auth::user()->primary_profile == NULL )
Chris Wood
*
@elseif(Auth::user()->primary_profile != NULL && Auth::user()->approved == 0 )

{{ __('Your application is under verification, will be notified via registered e-mail.') }}

Thank you

@elseif(Auth::user()->primary_profile != NULL && Auth::user()->approved == -1 )
{{ __('Profile Setup') }}

{{ __('Your application "'. $userProfile->application_id.'" has got rejected due to following reason. We request to do the needful changes and submit once again.') }}

Reason : {!! $userProfile->remark !!}
@include('user.profile_setup_rejected'); @elseif(Auth::user()->primary_profile != NULL && Auth::user()->approved == 1 && Auth::user()->paid == 0 )
{{ __('Profile Setup') }}

{{ __('Your application has been approved, Please Pay INR 250 to complete your registeration, Kindly Proceed to PAY.') }}

@foreach ($payment_gateways as $payment_gateway)
@endforeach

@elseif($paid == '1')
{{ __('Profile Setup') }}
  • Application Approved
  • Payment is successfull

@endif @endauth @auth @endauth @auth @if(Auth::user()->primary_profile != NULL && Auth::user()->approved == -1 ) @endif @endif @endauth