Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

abalsh / Garlix

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Garlix
  • resources
  • views
  • contact.blade.php
Find file
Normal viewHistoryPermalink
contact.blade.php 2.44 KB
Edit
Newer Older
Florian Shllaku's avatar
Laravel has been added and the p...
20bcaf2c
 
Florian Shllaku committed 6 years ago
1 2 3
@extends('header')

@section('content')
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
4 5 6 7 8 9 10 11 12 13 14 15 16
    <br> <br> <br> <br>
    <main role="main" class="inner cover">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <div class="card-body">
            <div class="card-heading"></div>
            @if(session('message'))
                <div class='alert alert-success'>
                    {{ session('message') }}
                </div>
            @endif
            <div class="card-body">
                <h3> Contact Us</h3>
                <br>
hakeem's avatar
testing
87eadb51
 
hakeem committed 5 years ago
17
                <h2 class="lead title" > Get in-touch with us.</h2>
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
18
                <br>
Florian Shllaku's avatar
Contact page completedgit add .
c421b1d2
 
Florian Shllaku committed 6 years ago
19 20 21 22
                @if(count($errors) > 0)
                    <div class="alert alert-danger">
                        <button type="button" class="close" data-dismiss="alert">×</button>
                        <ul>
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
23 24 25
                            @foreach ($errors->all() as $error)
                                <li>{{ $error }}</li>
                            @endforeach
Florian Shllaku's avatar
Contact page completedgit add .
c421b1d2
 
Florian Shllaku committed 6 years ago
26
                        </ul>
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
27
                    </div>
Florian Shllaku's avatar
Contact page completedgit add .
c421b1d2
 
Florian Shllaku committed 6 years ago
28 29 30 31 32 33 34 35
                @endif

                @if($message = Session::get('success'))
                    <div class="alert alert-success alert-block">
                        <button type="button" class="close" data-dismiss="alert">×</button>
                        <strong>{{ $message }}</strong>
                    </div>
                @endif
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
36 37
                <div class="bs-container">
                    <form style= "alignment: center"   id="form" class="topBefore" action="{{ url('contact/send')}}" method="POST">
hakeem's avatar
adjusted subscribe and contact f...
592c3b92
 
hakeem committed 5 years ago
38
                        {{ csrf_field() }}
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
39 40 41 42 43 44 45 46 47 48 49 50
                        <div class="input-group">
                            <input type="text" class="lead" name="name" placeholder="NAME">
                        </div>
                        <div class="input-group">
                            <input type="text" class="lead" name="email" placeholder="E-MAIL">
                        </div>
                        <div class="input-group">
                            <textarea type="text" class="lead" name="message" placeholder="MESSAGE"></textarea>
                        </div>
                        <div class="input-group">
                            <input id="submit" class="lead" type="submit" name="send" value="Submit">
                        </div>
Florian Shllaku's avatar
Laravel has been added and the p...
20bcaf2c
 
Florian Shllaku committed 6 years ago
51
                    </form>
hakeem's avatar
testing
87eadb51
 
hakeem committed 5 years ago
52
                    <br>
Florian Shllaku's avatar
Laravel has been added and the p...
20bcaf2c
 
Florian Shllaku committed 6 years ago
53
                </div>
hakeem's avatar
adjusted subscribe and contact f...
592c3b92
 
hakeem committed 5 years ago
54 55
            </div>
        </div>
hakeem's avatar
Cosmetics
4128f5b5
 
hakeem committed 5 years ago
56 57
    </main>
    @include('footer')
Florian Shllaku's avatar
Contact page completedgit add .
c421b1d2
 
Florian Shllaku committed 6 years ago
58
@endsection