{!! Form::label('title', trans('global.brands.fields.title').'', ['class' => 'control-label form-label']) !!}
{!! Form::text('title', old('title'), ['class' => 'form-control','required'=>'', 'placeholder' => 'Enter your brand title']) !!}

@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if( empty( $is_ajax ) )
@if(! empty( $brand ) && file_exists(public_path() . '/thumb/' . $brand->icon)) @endif {!! Form::label('icon', trans('global.brands.fields.icon').'', ['class' => 'control-label']) !!} {!! Form::file('icon', ['class' => 'form-control', 'style' => 'margin-top: 4px;']) !!} {!! Form::hidden('icon_max_size', 15) !!} {!! Form::hidden('icon_max_width', 4096) !!} {!! Form::hidden('icon_max_height', 4096) !!}

@if($errors->has('icon'))

{{ $errors->first('icon') }}

@endif
@endif
{!! Form::label('status', trans('global.brands.fields.status').'', ['class' => 'control-label']) !!} {!! Form::select('status', $enum_status, old('status'), ['class' => 'form-control select2']) !!}

@if($errors->has('status'))

{{ $errors->first('status') }}

@endif