Advertisement
fadlyshafa

Untitled

Aug 24th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.29 KB | None | 0 0
  1. @extends('admin.layouts.master')
  2.  
  3. @section('content')
  4.  
  5. <div class="row">
  6.     <div class="col-md-10 col-md-offset-1">
  7.         <div class="box">
  8.             <div class="box-header">
  9.                 <p>
  10.                    
  11.                 </p>
  12.             </div>
  13.  
  14.             <div class="box-body">
  15.                
  16.                 <form role="form" method="post" action="{{ url('admin/user/'.$dt->id) }}">
  17.                     {{ csrf_field() }}
  18.                     {{ method_field('put') }}
  19.                     <div class="box-body">
  20.                         <div class="form-group">
  21.                             <label for="exampleInputEmail1">Name</label>
  22.                             <input type="text" name="name" class="form-control" id="exampleInputEmail1" placeholder="Name" value="{{ $dt->name }}">
  23.                         </div>
  24.                         <div class="form-group">
  25.                             <label for="exampleInputEmail1">Email address</label>
  26.                             <input type="email" name="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email" value="{{ $dt->email }}">
  27.                         </div>
  28.                         <div class="form-group">
  29.                             <label for="exampleInputPassword1">Password</label>
  30.                             <input type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  31.                         </div>
  32.                     </div>
  33.                     <!-- /.box-body -->
  34.  
  35.                     <div class="box-footer">
  36.                         <button type="submit" class="btn btn-primary">Update</button>
  37.                     </div>
  38.                 </form>
  39.  
  40.             </div>
  41.         </div>
  42.     </div>
  43. </div>
  44.  
  45. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement