{{--
@include('vcards.products.create') @include('vcards.products.edit') @include('vcards.products.show') --}}
@csrf
{{ Form::hidden('vcard_id', $vcard->id) }}
{{ Form::label('title', __('messages.front_cms.title') . ':', ['class' => 'form-label required']) }} {{ Form::text('title', isset($banners['title']) ? $banners['title'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.front_cms.title'), 'id' => 'banner_title']) }}
{{ Form::label('url', __('messages.front_cms.url') . ':', ['class' => 'form-label required']) }} {{ Form::url('url', isset($banners['url']) ? $banners['url'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.front_cms.url'), 'id' => 'banner_url']) }}
{{ Form::label('description', __('messages.front_cms.description') . ':', ['class' => 'form-label required']) }} {{ Form::textarea('description', isset($banners['description']) ? $banners['description'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.form.short_description'), 'id' => 'banner_description']) }}
{{ Form::label('banner_button', __('messages.front_cms.banner_button') . ':', ['class' => 'form-label required']) }} {{ Form::text('banner_button', isset($banners['banner_button']) ? $banners['banner_button'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.front_cms.banner_button'), 'id' => 'banner_button']) }}
{{ Form::checkbox('banner', 1, (isset($managesection) && $managesection['banner']) || empty($managesection), ['class' => 'form-check-input', 'id' => 'bannerCheckbox']) }} {{ Form::label('bannerCheckbox', __('messages.front_cms.banner_title'), ['class' => 'form-label mb-0 me-2 ms-4']) }}