@extends('layouts.app') @section('content') {{ Form::open(['url' => 'customertag/update/' . $request->id, 'method' => 'POST', 'name' => 'form', 'id' => 'createform']) }}
{{ Form::label('customer_code','会員ID',['class'=>'btn']) }} | {{ Form::text('customer_code', $data->customer_code, ['class'=>'form-control validate[required]', 'id'=>'customer_code', 'maxlength'=>'16']) }} |
{{ Form::label('customer_name','企業名',['class'=>'btn']) }} | {{ Form::text('customer_name', $data->name, ['class'=>'form-control validate[required]', 'id'=>'customer_name', 'maxlength'=>'128']) }} |
{{ Form::label('customer_tag','タグ',['class'=>'btn']) }} | {{ Form::text('customer_tag', $data->tag, ['class'=>'form-control validate[required]', 'id'=>'customer_tag', 'maxlength'=>'128']) }} |