Files
timebank-cc-public/resources/views/livewire/profile-organization/update-social-media-form.blade.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

42 lines
1.2 KiB
PHP

<x-jetstream.form-section submit="update">
<x-slot name="title">
{{ __('Social media and website') }}
</x-slot>
<x-slot name="description">
{{ __('Add links to your social media profiles to provide more context about your organization') }}
</x-slot>
<x-slot name="form">
<!--- Social media -->
<div class="col-span-6 sm:col-span-4">
@livewire('socials-form')
<x-jetstream.input-error for="socials" class="mt-2" />
</div>
<!-- Website -->
<div class="col-span-6 sm:col-span-4">
<x-jetstream.label for="website" value="{{ __('Organization Website') }}" />
<x-jetstream.input
placeholder="website.org"
wire:model.blur="website"
class="placeholder-gray-300"
/>
<x-jetstream.input-error for="website" class="mt-2" />
</div>
</x-slot>
<x-slot name="actions">
<x-jetstream.action-message class="mr-3" on="saved">
{{ __('Saved') }}
</x-jetstream.action-message>
<x-jetstream.button wire:loading.attr="disabled">
{{ __('Save') }}
</x-jetstream.button>
</x-slot>
</x-jetstream.form-section>