edit.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @extends('projects.layout')
  2. @section('content')
  3. <div class="container">
  4. <h2 class="text-center mt-5 mb-3">Редактировать проект</h2>
  5. <div class="card">
  6. <div class="card-header">
  7. <a class="btn btn-outline-info float-right" href="{{ route('projects.index') }}">
  8. Посмотреть все проекты
  9. </a>
  10. </div>
  11. <div class="card-body">
  12. @if ($errors->any())
  13. <div class="alert alert-danger">
  14. <ul>
  15. @foreach ($errors->all() as $error)
  16. <li>{{ $error }}</li>
  17. @endforeach
  18. </ul>
  19. </div>
  20. @endif
  21. <form action="{{ route('projects.update',$project->id) }}" method="POST">
  22. @csrf
  23. @method('PUT')
  24. <div class="form-group">
  25. <label for="name">Название</label>
  26. <input type="text" class="form-control" id="name" name="name" value="{{ $project->name }}">
  27. </div>
  28. <div class="form-group">
  29. <label for="description">Описание</label>
  30. <textarea class="form-control" id="description" rows="3" name="description">{{ $project->description }}</textarea>
  31. </div>
  32. <button type="submit" class="btn btn-outline-success mt-3">Сохранить проект</button>
  33. </form>
  34. </div>
  35. </div>
  36. </div>
  37. @endsection