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

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

@include('layouts.includes.message')
{{ Form::open(array('route' => 'units.store')) }} {{ Form::label('name', Trans('units.name')) }} {{ Form::text('name', null, [ 'class' => 'form-control', 'placeholder' => Trans('units.name'), 'required' => 'required' ])}}
{{ Form::close() }}
@if(UserRole::has('list_unit'))
@include('Units.table')
@endif
@endsection @section('addJs') @endsection