{!! Form::label('name', trans('app.form.name') . '*', ['class' => 'with-help']) !!} {!! Form::text('name', null, ['class' => 'form-control makeSlug', 'placeholder' => trans('app.placeholder.manufacturer_name'), 'required']) !!}
{!! Form::label('slug', trans('app.form.slug') . '*', ['class' => 'with-help']) !!} {!! Form::text('slug', null, ['class' => 'form-control slug', 'placeholder' => trans('app.placeholder.slug'), 'required']) !!}
{!! Form::label('active', trans('app.form.status') . '*', ['class' => 'with-help']) !!} {!! Form::select('active', ['1' => trans('app.active'), '0' => trans('app.inactive')], null, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.status'), 'required']) !!}
{!! Form::label('url', trans('app.form.url')) !!}
{!! Form::text('url', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.url')]) !!}
{!! Form::label('country_id', trans('app.form.country')) !!} {!! Form::select('country_id', $countries, null, ['class' => 'form-control select2', 'placeholder' => trans('app.placeholder.country')]) !!}
{!! Form::label('email', trans('app.form.email_address')) !!}
{!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.valid_email')]) !!}
{!! Form::label('phone', trans('app.form.phone')) !!}
{!! Form::text('phone', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.phone_number')]) !!}
{!! Form::label('description', trans('app.form.description')) !!} {!! Form::textarea('description', null, ['class' => 'form-control summernote', 'placeholder' => trans('app.placeholder.description')]) !!}
{!! Form::label('exampleInputFile', trans('app.form.logo'), ['class' => 'with-help']) !!} @if (isset($manufacturer) && $manufacturer->logoImage) @endif
{{ trans('help.logo_img_size') }}
{{ trans('app.form.upload') }}
{!! Form::label('exampleInputFile', trans('app.form.cover_img'), ['class' => 'with-help']) !!} @if (isset($manufacturer) && $manufacturer->coverImage) @endif
{{ trans('help.cover_img_size') }}
{{ trans('app.form.upload') }}
{!! Form::label('exampleInputFile', trans('app.form.featured_image'), ['class' => 'with-help']) !!} @if (isset($manufacturer) && $manufacturer->featureImage) @endif
{{ trans('help.brand_featured_img_size') }}
{{ trans('app.form.upload') }}

* {{ trans('app.form.required_fields') }}