@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