Remove error message and fix formatting in purchase.blade.php

This commit is contained in:
Benjamin Beganović 2024-03-14 15:58:45 +01:00
parent 562f0e7661
commit 21be70b47f

View File

@ -6,14 +6,6 @@
class="col-span-12 xl:col-span-6 bg-white flex flex-col items-center lg:h-screen" class="col-span-12 xl:col-span-6 bg-white flex flex-col items-center lg:h-screen"
> >
<div class="w-full p-10 lg:mt-24 md:max-w-xl"> <div class="w-full p-10 lg:mt-24 md:max-w-xl">
@if($errors->any())
@foreach($errors as $error)
<div class="alert alert-danger">
{{ $error }}
</div>
@endforeach
@endif
<img <img
class="h-8" class="h-8"
src="{{ $subscription->company->present()->logo }}" src="{{ $subscription->company->present()->logo }}"
@ -41,7 +33,6 @@
</div> </div>
</div> </div>
<form <form
action="{{ route('client.payments.process', ['hash' => $hash, 'sidebar' => 'hidden', 'source' => 'subscriptions']) }}" action="{{ route('client.payments.process', ['hash' => $hash, 'sidebar' => 'hidden', 'source' => 'subscriptions']) }}"
method="post" method="post"