Advertisement
Babul_420

Untitled

Apr 29th, 2021
926
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  @extends('customer.CustomerPageTemplate')
  2.    @section('content')
  3.  
  4.      <div  class="  mr-top-20 bdc">
  5.     <br>
  6.     <!-- body  -->
  7.      
  8.  
  9.  
  10.      <div class="container"  style="width: 600px; margin: auto;">
  11.       <h4>Customer Complain</h4>
  12.       <hr>
  13.        <form action ="{{route('complaind')}} " method="POST">
  14.     @if(Session::get('success'))
  15.            <div class="alert alert-success">
  16.             {{ Session::get('success')}}
  17.         @endif
  18.  
  19.          @if(Session::get('fail'))
  20.            <div class="alert alert-danger">
  21.             {{ Session::get('fail')}}
  22.         @endif
  23.  
  24.  
  25.         @csrf
  26.   <div class="form-group">
  27.     <label for="exampleFormControlSelect1">Catagory</label>
  28.     <select class="form-control" id="exampleFormControlSelect1" name="catagory">
  29.       <option>Servicing</option>
  30.       <option>Waste collect issue</option>
  31.       <option>Driver behavior</option>
  32.       <option>Payment Issue</option>
  33.       <option>Others</option>
  34.     </select>
  35.   </div>
  36.  
  37.  
  38.   <div class="form-group">
  39.     <label  >Write Your Complain</label>
  40.     <textarea class="form-control" name ="complain"   rows="3"></textarea>
  41.   </div>
  42.   <div class="form-group" align="right" style="margin-top: 50px;">
  43.      <input type="submit" class="btn btn-success" name="submit">
  44.   </div>
  45. </form>
  46.      </div>
  47.  
  48.  
  49.      <!-- footer  -->
  50.      @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement