Created
October 11, 2017 17:08
-
-
Save haruncpi/0d271a10f793e8e4e82519ad5c22f18e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('app') | |
| @section('content') | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-12"> | |
| <h3>Todo/Edit</h3> | |
| <form action="{{route('postEditRoute',$data->id)}}" method="POST" class="form-inline"> | |
| <input type="hidden" name="_token" value="{{ csrf_token() }}"> | |
| <input type="text" name="name" class="form-control" value="{{$data->name}}"> | |
| <input type="text" name="status" class="form-control" value="{{$data->status}}"> | |
| <input type="submit" class="btn btn-primary" value="Update"> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| @endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment