diff --git a/resources/views/pages/association/project-support/form/[ProjectProposal:slug].blade.php b/resources/views/pages/association/project-support/form/[ProjectProposal:slug].blade.php
index bcaa26d..cc4b0a6 100644
--- a/resources/views/pages/association/project-support/form/[ProjectProposal:slug].blade.php
+++ b/resources/views/pages/association/project-support/form/[ProjectProposal:slug].blade.php
@@ -52,9 +52,9 @@ on([
$save = function () {
$this->form->validate();
- if ($this->image) {
+ if ($this->image && method_exists($this->image, 'temporaryUrl')) {
$this->validate([
- 'image' => 'image|max:1024',
+ 'image' => 'nullable|image|max:1024',
]);
$this->projectProposal
->addMedia($this->image->getRealPath())
diff --git a/resources/views/pages/association/project-support/index.blade.php b/resources/views/pages/association/project-support/index.blade.php
index eefd86c..2ca8c93 100644
--- a/resources/views/pages/association/project-support/index.blade.php
+++ b/resources/views/pages/association/project-support/index.blade.php
@@ -138,28 +138,42 @@ $delete = function ($id) {
wire:key="project_{{ $project->id }}"
class="flex bg-white dark:bg-gray-800 shadow-sm rounded-xl overflow-hidden">
-
-
-
-
+ @if(!$project->sats_paid)
+
+
+
+
+ @else
+