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

{{Trans("units.menu")}} {{Trans("dashboard.crud.edit")}}

@include('layouts.includes.message')
{{ Form::model($unit, array('route' => ['units.update', $unit->id], 'method' => 'patch')) }} {{ Form::label('name', Trans('units.name')) }} {{ Form::text('name', null, [ 'class' => 'form-control', 'placeholder' => Trans('units.name'), 'required' => 'required' ])}}
{{ Form::close() }}
@include('Units.table')
@endsection @section('addJs') @endsection