added contact us page
This commit is contained in:
@@ -792,4 +792,8 @@ class TeamStoreController extends Controller
|
||||
$message->to('frank.begornia@yahoo.com')->subject('sample email');
|
||||
});
|
||||
}
|
||||
|
||||
public function contact(){
|
||||
return view('contact');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,6 +39,7 @@ Route::post('/custom/register', 'CustomAuthController@postRegister');
|
||||
|
||||
Route::get('cart', ['as' => 'cart', 'uses' => 'teamstore\TeamStoreController@cart']);
|
||||
Route::get('/checkout', 'teamstore\TeamStoreController@checkout');
|
||||
Route::get('/contact-us', 'teamstore\TeamStoreController@contact');
|
||||
Route::get('/mail', 'teamstore\TeamStoreController@mail');
|
||||
|
||||
Route::get('/designer/{templateid}', 'designer\DesignerController@index');
|
||||
|
||||
37
resources/views/contact.blade.php
Normal file
37
resources/views/contact.blade.php
Normal file
@@ -0,0 +1,37 @@
|
||||
@extends('merchbay_main')
|
||||
|
||||
@section('main-content')
|
||||
<style>
|
||||
.error{
|
||||
color: red;
|
||||
}
|
||||
.form-wrapper{
|
||||
margin-top: 20%;
|
||||
}
|
||||
</style>
|
||||
<div class="wrapper pb-5">
|
||||
<div class="main__content">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col col-lg-5 pt-5 text-center text-lg-start">
|
||||
<h4>Contact Us</h4>
|
||||
<hr class="custom-hr" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col col-lg-5">
|
||||
<h6><i class="fa fa-envelope-square me-2"></i> Email Address:</h6>
|
||||
<p>orders@merchbay.com</p>
|
||||
<hr>
|
||||
<h6><i class="fa fa-phone-square me-2"></i>Contact Number:</h6>
|
||||
<p>630 213 1500</p>
|
||||
<hr>
|
||||
<h6><i class="fa fa-map-marker me-2"></i>Address:</h6>
|
||||
<p>1281 Humbracht Circle Suite J Bartlett, Illinois 60103</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -5,16 +5,16 @@
|
||||
<div class="copyright">Copyright © 2021, <b>MERCHBAY</b>. All right reserved.</div>
|
||||
<ul class="footer-menu">
|
||||
<li class="footer-menu-item">
|
||||
<a href="/about-us">About Us</a>
|
||||
<a href="#">About Us</a>
|
||||
</li>
|
||||
<li class="footer-menu-item">
|
||||
<a href="/contact-us">Contact Us</a>
|
||||
<a href="{{ url('contact-us') }}">Contact Us</a>
|
||||
</li>
|
||||
<li class="footer-menu-item">
|
||||
<a href="/terms-and-conditions">Terms and Conditions</a>
|
||||
<a href="#">Terms and Conditions</a>
|
||||
</li>
|
||||
<li class="footer-menu-item">
|
||||
<a href="/privacy-policy">Privacy Policy</a>
|
||||
<a href="#">Privacy Policy</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user