@extends('admin.layouts.layouts')
@section('title', 'Create | Asset Inventory')
@section('page-css')
@endsection
@section('content')
{!! Form::open([
'route' => 'asset-inventory.store',
'method' => 'POST',
'id' => 'asset-inventory-form',
]) !!}
@csrf
{{ $errors->first('asset_category_id') }}
{{ $errors->first('asset_id') }}
| Serial No |
Generated Code |
Action |
{{ Form::close() }}
@endsection
@section('page-js')
@endsection