Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Fix typo: From -> Form
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisgibby authored Nov 17, 2020
1 parent 3957105 commit 0722b09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Tutorials/Quick-Start.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Plugin::load('Burzum/Imagine');

This will load the `bootstrap.php` of the File Storage plugin. The default configuration in there will load the LocalStorage listener and the ImageProcessing listener. You can also skip that bootstrap part and configure your own listeners in your apps bootstrap.php or a new file.

To make image processing work you'll have to add this to your applications bootstrap.php as well:
To make image processing work you'll have to add this to your application's bootstrap.php as well:

```php
/**
Expand Down Expand Up @@ -77,7 +77,7 @@ Inside the `edit.ctp` view file of your users edit method:
echo $this->Form->create($user);
echo $this->Form->input('username');
// That's the important line / field
echo $this->From->file('avatar.file');
echo $this->Form->file('avatar.file');
echo $this->Form->submit(__('Submit'));
echo $this->Form->end();
```
Expand Down

0 comments on commit 0722b09

Please sign in to comment.