@extends('front.layouts.master') @section('content')

Account Setup

  • Home
  • Account Setup

@if($result->is_phone_verified == 1)
Your phone number has been verified and your password has been set. You can now sign in using your new credentials.
@endif @if($result->is_phone_verified == 0) @if(session('success'))
{{ session('success') }}
@endif

Complete Your Account Setup

Verify your phone number and create a password to access your account.

{!! Form::open([ 'route' => ['verify-patient', $result->id], 'method' => 'POST', 'id' => 'ajax-submit', ]) !!} @csrf
{{-- Name --}}
{{-- Email --}}
{{-- Phone --}}

Enter the 6-digit verification code sent to your phone number via WhatsApp.

@for($i = 0; $i < 6; $i++)
@endfor
Didn't receive the code? Resend
{!! Form::close() !!}
@endif
@endsection @section('frontend_bottom_script') {{-- //account used for captcha is projects.intellisense@gmail.com --}} @endsection