@extends('layouts.app') @section('title', __('New Asset')) @section('content')
{{ __('New Asset') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@if($errors->has('items.*')) {{ $errors->first('items.*') }} @endif
@if($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
@if($errors->has('total')) {{ $errors->first('total') }} @endif
@endsection @section('scripts') @endsection