Advertisement
fadlyshafa

Untitled

Sep 1st, 2019
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.91 KB | None | 0 0
  1. @extends('layouts.master')
  2.  
  3. @section('content')
  4.  
  5. <div class="row">
  6.     <div class="col-md-8 col-md-offset-2">
  7.         <p>
  8.             <a href="javascript:history.back()" class="btn btn-warning btn-sm btn-flat">Go Back</a>
  9.         </p>
  10.         <div class="box box-warning">
  11.             <div class="box-header">
  12.                 <h4>{{ $title }}</h4>
  13.             </div>
  14.             <div class="box-body">
  15.                
  16.                 <form role="form" action="{{ url('master/kategori/add') }}" method="post">
  17.                     {{ csrf_field() }}
  18.                     <div class="box-body">
  19.                         <div class="form-group">
  20.                             <label for="exampleInputEmail1">Nama Kategori</label>
  21.                             <input type="text" name="nama" class="form-control" id="exampleInputEmail1" placeholder="Nama Kategori">
  22.                         </div>
  23.                     </div>
  24.                     <!-- /.box-body -->
  25.  
  26.                     <div class="box-footer">
  27.                         <button type="submit" class="btn btn-primary">Submit</button>
  28.                     </div>
  29.                 </form>
  30.  
  31.             </div>
  32.         </div>
  33.     </div>
  34. </div>
  35.  
  36. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement