@if (isset($url) && $url != '')
{!! Form::label("url", "Url", ['class' => 'col-sm-2 control-label','for'=>'url']) !!}
{!! Form::text("slug", old('slug', $url ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'slug','readonly']) !!}
@endif @include('layouts.web-admin.thumb',["pathFile"=>$productBrand->pathFile ?? '',"filename"=>$productBrand->thumb ?? '',"action_page"=>$action_page??"create"])
{!! Html::decode(Form::label("title_th", "Title TH *", ['class' => 'col-sm-2 control-label','for'=>'title_th'])) !!}
{!! Form::text("title_th", old('title_th', $productBrand->title_th ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'title_th',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('title_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', $productBrand->title_en ?? ''), ['class' => 'form-control','placeholder'=>"",'id'=>'title_en',(isset($action_page) && $action_page=="view")?"disabled":""]) !!} @if ($errors->has('title_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
@include('layouts.web-admin.startEndDate',["startDate"=>$productBrand->startDate ?? '',"endDate"=>$productBrand->endDate ?? '',"action_page"=>$action_page??"create"]) @include('layouts.web-admin.status',["status"=>$productBrand->status ?? 'Active',"action_page"=>$action_page??"create"])