[Back]
@extends('index')
@section("body")
<h1>New Computer Asset</h1>
<form method ="POST" action="manageasset-action">
   Brand: <input type="text" name="brand" ><br>
    Model: <input type="text" name="model" ><br>
    Asset Tag: <input type="text" name="assetTag" ><br>
    Serial No: <input type="text" name="Serial_No"><br>
    Remarks: <input type="text" name="Remarks"><br>
    Status: <select name="status"><br>
 
    <option value=''>Choose</option>
            <option value='InUse'>In Use</option>
            <option value='Available'>Available</option>
            <option value='Under Maintenance'>Under Maintenance</option>
            <option value='Retired'>Retired</option>
    </select>
        <br><br><br>
        <input type='submit' name= "btnAddComp" value='Add' class="button small">
        <button type="button" onclick="history.back()"  class="button small">Back</button>
        
    @csrf


</form>

@endsection