@extends('layouts.admin') @section('title', 'หน้าจอมาสเตอร์ | แก้ไข') @section('content') {{ html()->form('POST', '#')->class('form-horizontal')->open() }}

หน้าจอมาสเตอร์ {{-- @lang('labels.backend.access.roles.management') --}} แก้ไข


{{ html()->label('ฟิลด์ที่ 1') ->class('col-md-2 form-control-label') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('ข้อมูลฟิลด์ที่ 1')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label('ฟิลด์ที่ 2') ->class('col-md-2 form-control-label') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('ข้อมูลฟิลด์ที่ 2')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->form()->close() }} @endsection