@extends('layouts.app') @section('title') Add Asset Maintainance @stop @section('breadcrumb')
Home
Asset Maintainance
@stop @section('content')
@if(Session::has('date_error'))
{{ Session::get('date_error') }}
@endif
Add Asset Maintainance
{{csrf_field()}}
Asset Maintainance
*
@if($fixed_assets->count() > 0 ) @foreach($fixed_assets as $list)
{{$list->name}}
@endforeach @endif
@if ($errors->has('fixed_assets'))
{{ $errors->first('fixed_assets') }}
@endif
Type
*
Maintenance
Repair
Upgrade
Testing
Calibration
Software support
Hardware support
@if ($errors->has('fixed_assets'))
{{ $errors->first('fixed_assets') }}
@endif
Start
*
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
End
*
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
Cost
*
@if ($errors->has('cost'))
{{ $errors->first('cost') }}
@endif
Submit
@stop