{!! Form::label('name', __('labels.brand.form.name')) !!} * {!! Form::text('name', old('name', $data['brand']->name ?? ''), ['class' => 'form-control', 'required']) !!} @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('is_active', __('labels.brand.form.is_active')) !!} * {!! Form::checkbox('is_active', 1, old('is_active', $data['brand']->is_active ?? 1), ['id' => 'is_active']) !!} @if ($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif