@extends('admin.layouts.template') @section('page_heading','Update') @section('content')
.
ตัวย่อ
@foreach($brand1 as $brand)
{!! Form::label('name','ชื่อ') !!}

{{$brand->name}}

{!! Form::label('initial','ตัวย่อ') !!}

@endforeach
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@stop