@php use App\Enums\BequestsTrustsEnquiryType; use App\Enums\DataProtectionEnquiryType; use App\Enums\DisputesEnquiryType; use App\Enums\EcumenicalEnquiryType; use App\Enums\GovernanceConnexionalEnquiryType; use App\Enums\LegalEnquiryConcern; use App\Enums\ManagingTrusteeType; use App\Enums\PropertyEnquiryType; use App\Enums\SchoolsEnquiryType; @endphp @section('beforeMain') @include('sections.banner', ['background' => '', 'space_class'=>'xlg-pt4 pt3 pb3']) @include('livewire.sections.lfd-heading', [ 'short_title' => 'Legal', 'title' => 'Legal enquiry', 'step' => $this->step ]) @include('sections.banner_CLOSE') @endsection
@include('livewire.form.error') @if($this->firstStep())
@include('livewire.form.select', [ 'label' => 'What is your enquiry concerning?', 'wire_model' => 'enquiry_concern', 'x_model' => 'enquiryConcern', 'options' => LegalEnquiryConcern::toArray(), 'defer' => false ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => PropertyEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => DisputesEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => EcumenicalEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => SchoolsEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => BequestsTrustsEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What type of legal matter is this?', 'wire_model' => 'enquiry_type_details', 'options' => DataProtectionEnquiryType::toArray(), ])
@include('livewire.form.select', [ 'label' => 'What is the type of enquiry?', 'wire_model' => 'enquiry_type_details', 'options' => GovernanceConnexionalEnquiryType::toArray(), ])
What information can you provide?
Please provide as much information as possible to help us to answer your enquiry.
You must select at least one of the following options:
@include('livewire.form.text', [ 'label' => 'Project ID', 'wire_model' => 'project_id', 'help' => 'If your enquiry relates to an existing project, please insert the project ID here', ])
@include('livewire.form.text', [ 'label' => 'Name of property', 'wire_model' => 'property_name', 'help' => 'Please insert the name of the building e.g. High St MC and add the town and/or postcode so we can identify exactly which property your enquiry relates to.', ])
@include('livewire.form.text', [ 'label' => 'Trust Number or Name of Deceased or Donee', 'wire_model' => 'property_name', 'help' => 'Insert either the Trust Number, name of the deceased or the donee name', ])
@include('livewire.form.text', [ 'label' => 'Enquiry Description', 'wire_model' => 'property_name', 'help' => 'Insert a short title to describe what the enquiry relates to, e.g. the name of the guidance note or standard form or data protection issue your enquiry concerns', ])
@include('livewire.form.text', [ 'label' => 'Name of Managing Trustee Body', 'wire_model' => 'managing_trustee_name', 'help' => 'Insert name of Managing Trustee body on behalf of whom you are making this enquiry e.g. High Street Church Council', ]) @include('livewire.form.select', [ 'label' => 'Type of Managing Trustee Body', 'wire_model' => 'managing_trustee_type', 'options' => ManagingTrusteeType::toArray(), ])
@else @include('livewire.sections.lfd-form-step-2') @endif @include('livewire.form.submit')