{!! Html::decode(Form::label("type", "Type", ['class' => 'col-sm-2 control-label','for'=>'title_th'])) !!}
@if ($errors->has('title_th')) @endif
{!! Html::decode(Form::label("title_th", "Title TH *", ['class' => 'col-sm-2 control-label','for'=>'title_th'])) !!}
{!! Form::text("title_th", old('title_th', $brand->title_th ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'title_th',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('title_th')) @endif
{!! Form::label("detail_th", "Detail TH", ['class' => 'col-sm-2 control-label','for'=>'title_th']) !!}
{!! Form::text("detail_th", old('detail_th', $brand->detail_th ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'detail_th',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('detail_th')) @endif
{!! Form::label("content_th", "Content", ['class' => 'col-sm-2 control-label','for'=>'content_th']) !!}
{!! Form::textarea('content_th', null, ['id'=>'content_th','class' => 'form-control class_ckeditor','size' => '50x3','placeholder'=>""]) !!} @if ($errors->has('content_th')) @endif
{!! Html::decode(Form::label("title_en", "Title EN *", ['class' => 'col-sm-2 control-label','for'=>'title_en'])) !!}
{!! Form::text("title_en", old('title_en', $brand->title_en ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'title_en',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('title_en')) @endif
{!! Form::label("detail_en", "Detail EN", ['class' => 'col-sm-2 control-label','for'=>'title_en']) !!}
{!! Form::text("detail_en", old('detail_en', $brand->detail_en ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'detail_en',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('detail_en')) @endif
{!! Form::label("content_en", "Content EN", ['class' => 'col-sm-2 control-label','for'=>'content_en']) !!}
{!! Form::textarea('content_en', null, ['id'=>'content_en','class' => 'form-control class_ckeditor','size' => '50x3','placeholder'=>""]) !!} @if ($errors->has('content_en')) @endif
{!! Form::label("url", "URL", ['class' => 'col-sm-2 control-label','for'=>'url']) !!}
{!! Form::text("url", old('url', $brand->url ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'url',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('url')) @endif
@include('layouts.web-admin.startEndDate',["startDate"=>$brand->startDate ?? '',"endDate"=>$brand->endDate ?? '',"action_page"=>$action_page??"create"]) @include('layouts.web-admin.status',["status"=>$brand->status ?? 'Active',"action_page"=>$action_page??"create"])