@extends('backend.template') @section('content')

Add Folow Up

@csrf
{{createText("title","title","Title",'', $data->title)}}
{{createCustomSelect('tbl_registrations', 'name', 'registration_id', $data->registrations_id, 'Registrations','registrations_id', 'form-control select2','status<>-1')}}
{{createCustomSelect('tbl_followups', 'title', 'followup_id', $data->parent_followup, 'Parent Followup','parent_followup', 'form-control select2','status<>-1')}}
{{createText("followup_date","followup_date","Followup Date",'',$data->followup_date)}}
{{createText("followup_response","followup_response","Followup Response",'',$data->followup_response)}}
{{createText("followup_by","followup_by","Followup By",'',$data->followup_by)}}
{{createText("next_schedule","next_schedule","Next Schedule",'',$data->next_schedule)}}
{{createPlainTextArea("remarks",'',"Remarks",$data->remarks)}}
@endsection