@extends('layouts.app') @section('title') Add Asset type @stop @section('breadcrumb')
Home
Asset type
@stop @section('content')
Add Asset Type
{{csrf_field()}}
Name
*
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Depreciation Policy
*
Straight Line Method
Reducing Balance Method
@if ($errors->has('depreciation_policy'))
{{ $errors->first('depreciation_policy') }}
@endif
Depreciation Rate
*
%
@if ($errors->has('depreciation_rate'))
{{ $errors->first('depreciation_rate') }}
@endif
Submit
@stop @section('js') @stop