@extends('layouts.app') @section('title', 'Edit- asset detail | ') @section('content')
@csrf
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
#Hard Disk, keyboard, Mouse, Notepad etc. @if ($errors->has('asset_name'))
{{ $errors->first('asset_name') }}
@endif
#Laptop-TS011 etc.
Price/Item
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif

Attachment


Add file
@if(count($files) > 0) @foreach($files as $item)
Preview ×

{{$item->file_name}}

@endforeach @endif
@endsection