{{ __('messages.vcard.edit_gallery') }}

{!! Form::open(['id'=>'editGalleryForm', 'files' => 'true']) !!}
{{ Form::hidden('gallery_id', null,['id' => 'galleryId']) }}
{{ Form::select('type', \App\Models\Gallery::TYPE,\App\Models\Gallery::TYPE_IMAGE, ['class' => 'form-select form-select-solid fw-bold', 'data-control' => 'select2', 'data-dropdown-parent' => '#editGalleryModal' ,'id'=>'editTypeId']) }}
@php $galleryCategories = \App\Models\GalleryCategory::query() ->where('vcard_id', $vcard->id) ->orderBy('name') ->pluck('name', 'id') ->toArray(); @endphp
{{ Form::label('category', __('messages.whatsapp_stores.category').':', ['class' => 'form-label fs-6 text-gray-700']) }} {{ Form::select('category_id', $galleryCategories, null, ['class' => 'form-control form-select form-select-solid fw-bold', 'id' => 'editGalleryCategory', 'data-control' => 'select2', 'data-dropdown-parent' => '#editGalleryModal', 'placeholder' => __('messages.whatsapp_stores.select_category')]) }}
{{__('messages.allowed_file_types')}}
{{ Form::label('link', __('messages.gallery.youtube').':', ['class' => 'form-label required fs-6 text-gray-700 mb-3']) }} {{ Form::url('link', null, ['class' => 'form-control', 'placeholder' => 'https://www.youtube.com/watch?v=hAGbufevHM4','id'=>'editYouTube_Link']) }}

{{ Form::button(__('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary me-3','id'=>'editGallerySave']) }}
{!! Form::close() !!}