@extends('layouts.cork') @section('title', $title) @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content')
@csrf @if($action == 'edit') @method('PUT') @endif
@error('name')
{{ $errors->first('name') }}
@enderror
@error('department_id')
{{ $errors->first('department_id') }}
@enderror
@error('asset_tag')
{{ $errors->first('asset_tag') }}
@enderror
@error('serial_num')
{{ $errors->first('serial_num') }}
@enderror
@error('model')
{{ $errors->first('model') }}
@enderror
@error('condition')
{{ $errors->first('condition') }}
@enderror
@error('purchase_date')
{{ $errors->first('purchase_date') }}
@enderror
@error('purchase_price')
{{ $errors->first('purchase_price') }}
@enderror
@error('description')
{{ $errors->first('description') }}
@enderror
@error('notes')
{{ $errors->first('notes') }}
@enderror
@endsection