@extends('admin.layouts.template') @section('page_heading','Update') @section('content')
.
ภาษาที่ใช้พัฒนา
{!! Form::model($lang,array('route'=>['lang.update',$lang->id],'method'=>'PUT','novalidate' => 'novalidate','files' => true)) !!}
{!! Form::label('name','ชื่อ') !!} {!! Form::text('name',null,['class'=>'form-control']) !!}
{!! Form::button('บันทึก',['type'=>'submit','class'=>'btn btn-primary']) !!} {{ link_to_route('lang.index','ย้อนกลับ',null,['class'=>'btn btn-danger']) }}
{!! Form::close() !!}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop