{!! Form::open(['url' => '/admin/brands', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Name') !!}
{!! Form::text('brand_name', null, ['class' => 'form-control', 'placeholder' => 'Name', 'id' => 'brand_name']) !!}
@if ($errors->has('brand_name'))
{!! $errors->first('brand_name') !!}@endif
{!! Form::label('Slug') !!}
{!! Form::text('brand_slug', null, ['class' => 'form-control', 'placeholder' => 'Slug', 'id' => 'brand_slug']) !!}
@if ($errors->has('brand_slug'))
{!! $errors->first('brand_slug') !!}@endif
{!! Form::label('Code') !!}
{!! Form::text('brand_code', null, ['class' => 'form-control', 'placeholder' => 'Code']) !!}
@if ($errors->has('brand_code'))
{!! $errors->first('brand_code') !!}@endif
{!! Form::label('Brand Logo') !!}
{!! Form::label('Meta Title') !!}
{!! Form::text('brand_meta_title', null, ['class' => 'form-control', 'placeholder' => 'Meta Title', 'id' => 'brand_meta_title']) !!}
@if ($errors->has('brand_meta_title'))
{!! $errors->first('brand_meta_title') !!}@endif
{!! Form::label('Meta Keyword') !!}
{!! Form::text('brand_meta_keyword', null, ['class' => 'form-control', 'placeholder' => 'Meta Keyword', 'id' => 'brand_meta_keyword']) !!}
@if ($errors->has('brand_meta_keyword'))
{!! $errors->first('brand_meta_keyword') !!}@endif
{!! Form::label('Meta Description') !!}
{!! Form::textarea('brand_meta_description', null, ['class' => 'form-control', 'placeholder' => 'Meta Description', 'id' => 'brand_meta_description']) !!}
@if ($errors->has('brand_meta_description'))
{!! $errors->first('brand_meta_description') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('brand_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}