@extends('layouts.admin') @section('title', 'หน้าจอสีแท็กกิ้ง | แก้ไข') @section('content') {{ html()->form('POST', '#')->class('form-horizontal')->open() }}

หน้าจอสีแท็กกิ้ง {{-- @lang('labels.backend.access.roles.management') --}} แก้ไข


{{ html()->label('รหัสสีแท็กกิ้ง/') ->class('col-md-2 form-control-label') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('รหัสสีแท็กกิ้ง')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label('รายละเอียด/') ->class('col-md-2 form-control-label') }}
{{ html()->textarea('name') ->class('form-control') ->placeholder(__('รายละเอียด')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label('จำนวน/') ->class('col-md-2 form-control-label') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('จำนวน')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label('ราคาต่อหน่วย/') ->class('col-md-2 form-control-label') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('ราคาต่อหน่วย')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label('รูป/') ->class('col-md-2 form-control-label') }}
{{ html()->form()->close() }} @endsection