1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@extends('layouts.app')
@section('content')
<!-- Navigation -->
<!-- <nav class="navbar navbar-expand-lg navbar-dark fixed-top" style="background-color: #ff6600">
<div class="container">
<a class="navbar-brand" href="#">Start Bootstrap</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav> -->
<!-- Page Content -->
<div class="container">
<!-- Introduction Row -->
<h1 class="my-4 text-center">Group 7</h1>
<hr>
<!-- Team Members Row -->
<div class="row">
<div class="col-lg-12">
<h2 class="my-4">About Team</h2>
</div>
<div class="col-lg-4 col-sm-6 text-center mb-4">
<img class="rounded-circle img-fluid d-block mx-auto" style="width: 200px" src="{{ url('image/profile_mai.jpg')}}" alt="">
<h3>ปิยังกูร สอนส่งกลิ่น
<small>(ไม้)</small>
</h3>
<p><u><b>ตำแหน่ง</b></u> พัฒนาระบบจองห้องคอมพิวเตอร์</p>
<a href="https://www.facebook.com/profile.php?id=100010510270635" style="text-decoration:none">
<img src="{{ url('image/icon_face.png')}}" style="width: 50px" >    
</a>
<a href="http://projectcs.sci.ubu.ac.th/piyunggur" style="text-decoration:none">
<img src="{{ url('image/icon_git.png')}}" style="width: 50px" >
</a>
</div>
<div class="col-lg-4 col-sm-6 text-center mb-4">
<img class="rounded-circle img-fluid d-block mx-auto" style="width: 200px" src="{{ url('image/profile_four.jpg')}}" alt="">
<h3>นรากร วิเชียรไชย
<small>(โฟร์)</small>
</h3>
<p><u><b>ตำแหน่ง</b></u> ติดต่อฐานข้อมูล SQL และดูแลระบบงานต่าง ๆ</p>
<a href="https://www.facebook.com/narakornsiam" style="text-decoration:none">
<img src="{{ url('image/icon_face.png')}}" style="width: 50px" >    
</a>
<a href="http://projectcs.sci.ubu.ac.th/Inwfour" style="text-decoration:none">
<img src="{{ url('image/icon_git.png')}}" style="width: 50px" >
</a>
</div>
<div class="col-lg-4 col-sm-6 text-center mb-4">
<img class="rounded-circle img-fluid d-block mx-auto" style="width: 200px" src="{{ url('image/profile_por.jpg')}}" alt="">
<h3>กุลสตรี สายโสภา
<small>(ปอ)</small>
</h3>
<p><u><b>ตำแหน่ง</b></u> ดูแลหน้าใช้งานต่าง ๆ ของเว็บ</p>
<a href="https://www.facebook.com/Porsche.kiki.90" style="text-decoration:none">
<img src="{{ url('image/icon_face.png')}}" style="width: 50px" >    
</a>
<a href="http://projectcs.sci.ubu.ac.th/kunlasatri" style="text-decoration:none">
<img src="{{ url('image/icon_git.png')}}" style="width: 50px" >
</a>
</div>
</div>
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-4" style="background-color: #ff6600">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Your Website 2018</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
@endsection