customer support interface

This commit is contained in:
Omair Saleh
2023-01-24 04:22:49 +08:00
parent c9231c9a3f
commit f8de28e129
2 changed files with 17 additions and 5 deletions
@@ -6,10 +6,20 @@
<div class="col-12">
<form method="post" >
@csrf
<input type="text" name="marking" value="{{$marking}}">
<input type="email" name="email" value="{{$email}}">
<input type="text" name="booking_reference" value="{{$bookingReference}}">
<button type="submit">Search</button>
<div class="row">
<div class="col">
<input class="form-control" type="text" name="marking" value="{{$marking}}">
</div>
<div class="col">
<input class="form-control" type="email" name="email" value="{{$email}}">
</div>
<div class="col">
<input class="form-control" type="text" name="booking_reference" value="{{$bookingReference}}">
</div>
<div class="col-auto">
<button class="btn btn-complete" type="submit">Search</button>
</div>
</div>
</form>
</div>
</div>
+3 -1
View File
@@ -107,7 +107,9 @@ Route::get('/support', function () {
return view('pages.customer_support', [
'marking' => null,
'email' => null,
'bookingReference' => null
'bookingReference' => null,
'company' => null,
'booking' => null
]);
})->name('support');