@extends('core::layouts.master')
@section('breadcrumb','Quản lý nhà sản xuất - thương hiệu')
@section('head-action')
@endsection
@section('content')
{!! Form::open([
'method' => 'POST',
'route' => 'admin.product.manufacturer.store',
'files' => true,
'id' => 'brand-form'
]) !!}
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::bsBoxOpen() }}
{{ Form::bsText('Tên nhà sản xuất - thương hiệu','name', null, ['required'=>'required']) }}
{{ Form::bsLfFile('Hình đại diện','thumb',null,['width'=>150,'height'=>120]) }}
{{ Form::bsButton('Thêm mới',['type'=>'submit','class'=>'btn btn-default']) }}
{{ Form::bsBoxClose() }}
{!! Form::close() !!}