@extends('index') @section("body") <h1>New Printer Asset</h1> <form method ="POST" action="manageasset-action"> Type: <input type="text" name="type" ><br> Location: <input type="text" name="location" ><br> Department: <input type="text" name="dept" ><br> 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= "btnAddPrint" value='Add' class="button small"> <button type="button" onclick="history.back()" class="button small">Back</button> @csrf </form> @endsection