mirror of
https://github.com/standardebooks/web.git
synced 2025-07-21 06:45:14 -04:00
Fix duplicate attribute in project edit form
This commit is contained in:
parent
e585ecdf3f
commit
5b86428404
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ catch(Exceptions\InvalidPermissionsException){
|
||||||
|
|
||||||
<?= Template::Error(['exception' => $exception]) ?>
|
<?= Template::Error(['exception' => $exception]) ?>
|
||||||
|
|
||||||
<form class="project-form" autocomplete="off" method="<?= Enums\HttpMethod::Post->value ?>" action="<?= $project->Url ?>" autocomplete="off">
|
<form class="project-form" autocomplete="off" method="<?= Enums\HttpMethod::Post->value ?>" action="<?= $project->Url ?>">
|
||||||
<input type="hidden" name="_method" value="<?= Enums\HttpMethod::Put->value ?>" />
|
<input type="hidden" name="_method" value="<?= Enums\HttpMethod::Put->value ?>" />
|
||||||
<?= Template::ProjectForm(['project' => $project, 'isEditForm' => true]) ?>
|
<?= Template::ProjectForm(['project' => $project, 'isEditForm' => true]) ?>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue