@extends('core::layouts.master') @section('breadcrumb','Quản lý nhà sản xuất - thương hiệu') @section('head-action') {{-- {{ Form::bsNavButton('Thêm mới', route('admin.product.manufacturer.create')) }}--}} @endsection @section('content')
{!! Form::open([ 'method' => 'PUT', 'route' => ['admin.product.manufacturer.update',$manufacturer->id], 'files' => true, 'id' => 'brand-form' ]) !!} @if ($errors->any())
@endif {{ Form::bsBoxOpen() }} {{ Form::bsText('Tên nhà sản xuất - thương hiệu','name',old('name') ? old('name') : $manufacturer->name) }} {{ Form::bsLfFile('Hình đại diện','thumb',old('thumb') ? old('thumb') : $manufacturer->logo,['width'=>150,'height'=>120]) }}
{{ Form::bsButton('Quay lại',['class'=>'btn btn-default']) }} {{ Form::bsButton('Cập nhật',['type'=>'submit']) }}
{{ Form::bsBoxClose() }} {!! Form::close() !!}
Hình ảnh Tiêu đề
@endsection @section('stylesheet') @endsection @section('scripts') @endsection