@extends('layouts.production') @section('content') {{Trans("item_locations.menu")}} {{Trans("dashboard.crud.add")}} {{Trans("dashboard.crud.new")}} Home {{ Trans('item_locations.menu')}} {{Trans("dashboard.crud.add")}} @include('layouts.includes.message') {{ trans('dashboard.form')}} {{ trans('item_locations.menu')}} {{ Form::open(['url' => 'add']) }} {{ Form::label('name', 'Name') }} {{ Form::text('name', null, ['class' => 'form-control', 'placeholder' => "Name"]) }} {{ $errors->first('name') }} {{ Form::label('amount', 'Amount') }} {{ Form::number('amount', null, [ 'class' => 'form-control', 'placeholder' => "Amount" ]) }} {{ $errors->first('amount') }} + Add {{ Form::close() }} ID Name Action 01 A01 Detail {{ Form::close() }} @endsection