@if (!empty($image))
@switch($type)
@case('favicon')
@case('image')
@break
@case('audio')
@break
@case('video')
@break
@default
@php
$ext = strtolower(pathinfo(parse_url($image, PHP_URL_PATH) ?? '', PATHINFO_EXTENSION));
$isImageFile = in_array($ext, ['jpg', 'jpeg', 'png', 'gif', 'webp', 'avif', 'apng', 'svg']);
@endphp
@if ($isImageFile)
@else
@endif
@endswitch
@else
{{ __('upload.txt') }}
@endif