Advertisement
asimryu

edit.blade.php

Dec 4th, 2022
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. @extends('layouts.app')
  2. @section('title')
  3.     Edit Todo
  4. @endsection
  5. @section('content')
  6.  
  7.     <form action="/todo/public/task/{{ $task->id }}" method="post" class="mt-4 p-4">
  8.         {{ csrf_field() }}
  9.        
  10.         <div class="form-group m-3">
  11.             <label for="name">Task</label>
  12.             <textarea name="description" class="form-control">{{$task->description}}</textarea>
  13.         </div>
  14.         <div class="form-group m-3">
  15.             <input type="submit" class="btn btn-primary float-end" name="update" value="update">
  16.         </div>
  17.     </form>
  18.  
  19. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement