View difference between Paste ID: 06pBwvKw and GDFRnWkj
SHOW: | | - or go back to the newest paste.
1-
<!doctype html>
1+
 @extends('customer.CustomerPageTemplate')
2-
<html lang="en">
2+
   @section('content')
3-
  <head>
3+
4-
    <!-- Required meta tags -->
4+
     <div  class="  mr-top-20 bdc">
5-
    <meta charset="utf-8">
5+
    <br>
6-
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6+
    <!-- body  -->
7-
       <meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
     
8-
<meta name="description" content="The River template project">
8+
 
9-
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
10-
<link rel="stylesheet" type="text/css" href={{asset('css/temp/styles/bootstrap-4.1.2/bootstrap.min.css')}}>
10+
     <div class="container"  style="width: 600px; margin: auto;">
11
      <h4>Customer Complain</h4>
12-
<link href={{asset('css/temp/plugins/font-awesome-4.7.0/css/font-awesome.min.css')}} rel="stylesheet" type="text/css">
12+
      <hr>
13-
<link rel="stylesheet" type="text/css" href={{asset('css/temp/plugins/OwlCarousel2-2.3.4/owl.carousel.css')}}>
13+
       <form action ="{{route('complaind')}} " method="POST">
14-
<link rel="stylesheet" type="text/css" href={{asset('css/temp/plugins/OwlCarousel2-2.3.4/owl.theme.default.css')}} >
14+
    @if(Session::get('success'))
15
           <div class="alert alert-success">
16-
<link rel="stylesheet" type="text/css" href={{asset('css/temp/plugins/OwlCarousel2-2.3.4/animate.css')}} >
16+
            {{ Session::get('success')}}
17-
<link href= {{asset('css/temp/plugins/jquery-datepicker/jquery-ui.css')}} rel="stylesheet" type="text/css">
17+
        @endif
18-
<link href= {{asset('css/temp/plugins/colorbox/colorbox.css')}} rel="stylesheet" type="text/css">
18+
19-
<link rel="stylesheet" type="text/css" href= {{asset('css/temp/styles/main_styles.css')}} >
19+
         @if(Session::get('fail'))
20-
<link rel="stylesheet" type="text/css" href={{asset('css/temp/styles/responsive.css')}} >
20+
           <div class="alert alert-danger">
21-
    <!-- Bootstrap CSS -->
21+
            {{ Session::get('fail')}}
22-
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
22+
        @endif
23
24-
   
24+
25-
        <title> 
25+
        @csrf
26-
           {{$loggedUser['name']}}
26+
  <div class="form-group">
27-
        </title> 
27+
    <label for="exampleFormControlSelect1">Catagory</label>
28-
          
28+
    <select class="form-control" id="exampleFormControlSelect1" name="catagory">
29-
        <!-- add icon link -->
29+
      <option>Servicing</option>
30-
        <link rel = "icon" href = {{asset('image/user/wms.jpg')}} 
30+
      <option>Waste collect issue</option>
31-
        type = "image/x-icon">
31+
      <option>Driver behavior</option>
32
      <option>Payment Issue</option>
33
      <option>Others</option>
34
    </select>
35-
        <link rel="stylesheet" href= {{asset('css/style.css')}} >
35+
36-
        <link rel="stylesheet" href= {{asset('css/stelex.css')}} >
36+
37
  
38-
  </head>
38+
  <div class="form-group">
39-
  <body  >
39+
    <label  >Write Your Complain</label>
40
    <textarea class="form-control" name ="complain"   rows="3"></textarea>
41
  </div>
42-
     <!-- header  -->
42+
  <div class="form-group" align="right" style="margin-top: 50px;">
43-
     <header class="header">
43+
     <input type="submit" class="btn btn-success" name="submit">
44-
    <div class="header_content d-flex flex-row align-items-center justify-content-start">
44+
45-
      <div class="logo"><a href="/">WMS</a></div>
45+
</form>
46-
      <div class="ml-auto d-flex flex-row align-items-center justify-content-start">
46+
     </div>
47-
        <nav class="main_nav">
47+
48-
          <ul class="d-flex flex-row align-items-start justify-content-start">
48+
 
49
     <!-- footer  -->
50-
            <li class=" "><a href="/home">Profile</a></li>
50+
     @endsection