@extends('front.practitioner.import.template.import') @section('css') @endsection @section('content')
@csrf

Intake form settings

When an intake form has been linked to a service, it will automatically be sent to all new clients once their first appointment is booked. Alternately, you can choose to manually send intake forms anytime via your client's card.

Automatically send intake form to all new clients

send_intake_form_to_all_new_client) && $practitionerIntakeForm->send_intake_form_to_all_new_client == 1) checked @endif autocomplete="off">

Manually send intake form to clients

manually_send_intake_form) && $practitionerIntakeForm->manually_send_intake_form == 1) checked @endif name="manually_send_intake_form" class="custom-control-input" id="manually_send_intake_form" value="1" data-parsley-multiple="send-intake" data-parsley-id="32" autocomplete="off">

How would you prefer to send your intake form to your clients?

SMS

send_intake_form_trough_sms) && $practitionerIntakeForm->send_intake_form_trough_sms == 1) checked @endif>

Email

send_intake_form_trough_email)) checked @endif @if(isset($practitionerIntakeForm->send_intake_form_trough_email) && $practitionerIntakeForm->send_intake_form_trough_email == 1) checked @endif @if(!isset($practitionerIntakeForm->send_intake_form_trough_email)) checked @endif>

Messaging

SMS text
@php $intake_sms_reminder_text = isset( $practitionerIntakeForm->intake_sms_reminder_text ) && $practitionerIntakeForm->intake_sms_reminder_text != '' ? $practitionerIntakeForm->intake_sms_reminder_text : 'Dear , please complete your intake form via this link before your appointment. Thank you, ' @endphp

...
1 credit per sms. Character count for 1st message is 160 and each message thereafter 153.
Overseas numbers incur 2 credits per sms.
Email subject line
@php $intake_email_subject_line = isset( $practitionerIntakeForm->intake_email_subject_line ) && $practitionerIntakeForm->intake_email_subject_line != '' ? $practitionerIntakeForm->intake_email_subject_line : 'Intake form from '; @endphp
Email text
@php $intake_email_text = isset( $practitionerIntakeForm->intake_email_text ) && $practitionerIntakeForm->intake_email_text != '' ? $practitionerIntakeForm->intake_email_text : 'Dear , Please complete your intake form before your appointment. We look forward to seeing you soon. With thanks, ';@endphp

@endsection @section('modals')
@endsection @section('import-scripts') @endsection