@extends('layouts.app') @section('title') Add New Inventory @stop @section('breadcrumb') @stop @section('content')
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Add New Inventory

Basic Information

{{csrf_field()}}
@if ($errors->has('unit_number')) {{ $errors->first('unit_number') }} @endif
@if ($errors->has('unit_floor_id')) {{ $errors->first('unit_floor_id') }} @endif
@if ($errors->has('unit_type_id')) {{ $errors->first('unit_type_id') }} @endif
@if ($errors->has('unit_size_id')) {{ $errors->first('unit_size_id') }} @endif
@if ($errors->has('area')) {{ $errors->first('area') }} @endif
@if ($errors->has('total_price')) {{ $errors->first('total_price') }} @endif
@if ($errors->has('unit_category_id')) {{ $errors->first('unit_category_id') }} @endif
@if ($errors->has('net_amount')) {{ $errors->first('net_amount') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
 
@stop @section('js') @stop