Skip to content

Instantly share code, notes, and snippets.

View tanyaharris's full-sized avatar

Tanya Harris tanyaharris

View GitHub Profile

Создание формы загрузки файлов в Laravel

  • Добавить в тег form enctype="multipart/form-data"
 <form action="{{route('upload-image')}}" method="post"  enctype="multipart/form-data">
  • У тега input добавить name
<input name="image" type="file">