{!! Form::open(['id'=>'addInstaForm', 'files' => 'true']) !!}
{{ Form::hidden('vcard_id', $vcard->id) }}
{{ Form::select('type', \App\Models\InstagramEmbed::TYPE,null,
['class' => 'form-control form-select form-select-solid fw-bold', 'required','data-dropdown-parent' => '#addInstaModal','placeholder'=>'Select Type', 'data-control' => 'select2','id'=>'typeId']) }}
{{ Form::textarea('embedtag', null, ['class' => 'form-control', 'placeholder' => __('messages.form.short_description'), 'rows' => '5' , 'required']) }}
{{ Form::button(__('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary me-3','id'=>'InstagramEmbedSave']) }}
{!! Form::close() !!}