@extends('web.layouts.main') @section('content') @include('web.components.page-header', ['heading' => $section->title, 'subheading' => $section->text])
    @foreach($contact_details as $contact_detail)
  • Location
    force_ltr ? 'dir=ltr' : '' }}> {!! $contact_detail->value !!}
  • @endforeach
@if($message = Session::get('status')) @endif
@csrf
@include('web.components.inputs.input', ['label' => trans('text.full-name').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'full_name', 'value' => Auth::guard('user')->user() ? Auth::guard('user')->user()->full_name : ''])
@include('web.components.inputs.input', ['label' => trans('text.email').'*', 'type' => 'email', 'placeholder' => trans('text.please-specify'), 'name' => 'email', 'value' => Auth::guard('user')->user() ? Auth::guard('user')->user()->email : ''])
@include('web.components.inputs.select-single', ['label' => trans('text.gender').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'gender', 'rows' => $genders, 'value_attribute' => 'id', 'attribute' => 'title'])
@include('web.components.inputs.select-single', ['label' => trans('text.country-of-residence').'*', 'class' => 'country-js', 'placeholder' => trans('text.please-specify'), 'name' => 'country_of_residence', 'attribute' => 'name', 'rows' => $countries, 'data_extra' => 'calling_code'])
@include('web.components.inputs.input', ['label' => trans('text.phone-number').'*', 'type' => 'number', 'class' => 'phone-code-js', 'placeholder' => trans('text.please-specify'), 'name' => 'phone_number', 'value' => Auth::guard('user')->user() ? Auth::guard('user')->user()->phone_number : ''])
@include('web.components.inputs.select-single', ['label' => trans('text.support-category').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'support_category', 'attribute' => 'title', 'rows' => $support_categories])
@include('web.components.inputs.textarea', ['label' => trans('text.your-message').'*', 'placeholder' => trans('text.let-us-know'), 'name' => 'message'])
@endsection @push('scripts') @endpush