{{ translate('Edit brand') }}
@php
if ($Brand->logo) {
$link = $Brand->logo;
} else {
$link = '/images/noimg.png';
}
@endphp
@error('logo')
{{ $message }}
@enderror
{!! Form::text('title', $Brand->getTranslation('title', defaultLanguage()), ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
@error('title')
{{ $message }}
@enderror
{!! Form::checkbox('featured', null, $Brand->featured, ['id' => 'Checkbox_2']) !!}