Advertisement
a6a51

Mail

May 22nd, 2018
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.12 KB | None | 0 0
  1. @extends('base')
  2. @section('content')
  3.     <!-- Main Section -->
  4.     <section class="main-section">
  5.         <!-- Add Your Content Inside -->
  6.         <div class="content">
  7.             <!-- Remove This Before You Start -->
  8.             <h1>Kirim Email</h1>
  9.             <hr>
  10.             <form action="{{ url('email') }}" method="post">
  11.                 {{ csrf_field() }}
  12.                 <div class="form-group">
  13.                     <label for="nama">Email:</label>
  14.                     <input type="email" class="form-control" id="usr" name="nama">
  15.                 </div>
  16.                 <div class="form-group">
  17.                     <label for="email">Isi email</label>
  18.                     <textarea name="isi" id="" cols="30" rows="10"></textarea>
  19.                 </div>
  20.                 <div class="form-group">
  21.                     <button type="submit" class="btn btn-md btn-primary">Submit</button>
  22.                     <button type="reset" class="btn btn-md btn-danger">Cancel</button>
  23.                 </div>
  24.             </form>
  25.         </div>
  26.         <!-- /.content -->
  27.     </section>
  28.     <!-- /.main-section -->
  29. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement