@extends('layouts.production') @section('addCss') @endsection @section('content')

{{Trans("products.product_category")}} {{Trans("dashboard.crud.add")}} {{Trans("dashboard.crud.new")}}

@include('layouts.includes.message')
{{ Form::open(['files' => true]) }}
{{ Form::label('name', Trans('products.categories.name')) }} {{ Form::text('name', null, [ 'class' => 'form-control', 'placeholder' => Trans('products.categories.name'), 'required' => "required" ])}}
{{ Form::label('icon', Trans('products.categories.icon')) }} {{ Form::file('icon', [ 'class' => 'form-control', 'placeholder' => Trans('products.categories.icon') ])}}
{{ Form::label('comment', Trans('products.categories.comment')) }} {{ Form::textarea('comment', null, [ 'class' => "form-control", 'placeholder' => Trans('products.categories.comment'), 'rows' => '3' ])}}
{{ Form::close() }}
@if(UserRole::has('list_category'))
@include('categories.table')
@endif
@endsection @section('addJs') @endsection