@php
$status = old('status', $data->status ?? null);
@endphp
@php
$has_quick_link = $data->has_quick_link ?? 0;
@endphp
@include('common.lfm', [
'type' => 'image',
'name' => 'Image',
'input' => 'image',
'required' => false,
'file' => $data->image ?? null,
])
@php
$tags = old('tags', json_decode($data->tags ?? null, true));
$tags = is_array($tags) ? $tags : [];
@endphp
@php
$tags_attributes = $data->tags_attributes ?? [];
@endphp
{{ Form::label('attributes', 'Select Attributes - Company') }}