release
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
@extends('layouts.heading-page')
|
||||
|
||||
@section('title')
|
||||
Support -
|
||||
Support -
|
||||
@endsection
|
||||
|
||||
@section('seo_keywords')
|
||||
@ -11,11 +11,11 @@
|
||||
@endsection
|
||||
|
||||
@section('css')
|
||||
<link href="assets/css/page.css" rel="stylesheet"/>
|
||||
<link href="/assets/css/page.css" rel="stylesheet"/>
|
||||
@endsection
|
||||
|
||||
@section('breadcrumbs')
|
||||
<a href="/support-technical">Support</a><span>/</span>Technical Support
|
||||
<a href="/support/customer">Support</a><span>/</span>Customer Service
|
||||
@endsection
|
||||
|
||||
@section('page-main')
|
||||
@ -23,7 +23,7 @@
|
||||
<div class="content-wrap support-wrap">
|
||||
<div class="container">
|
||||
<div class="contact-form mb-5">
|
||||
<h2 class="h2-title">Technical Support</h2>
|
||||
<h2 class="h2-title">Customer Service</h2>
|
||||
<form class="form-horizontal" action="?" method="POST">
|
||||
@csrf
|
||||
@if ($errors->any())
|
||||
@ -341,6 +341,12 @@
|
||||
|
||||
@section('script')
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(function(){
|
||||
$('#country').find('option').each(function($idx, $elem){
|
||||
if ($idx > 1){
|
||||
$($elem).val($($elem).text());
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@endsection
|
Reference in New Issue
Block a user