@extends('layouts.app') @section('title') Add Asset Sale @stop @section('breadcrumb')
Home
Add Asset Sale
@stop @section('content')
Add Asset Sale
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{csrf_field()}}
Assets
*
Select Asset For Sale
@foreach($fixed_asset as $list)
{{$list->asset_tag}} - {{$list->name}}
@endforeach
@if ($errors->has('asset'))
{{ $errors->first('asset') }}
@endif
Sale Date
*
@if ($errors->has('sale_date'))
{{ $errors->first('sale_date') }}
@endif
Maintainance Cost
*
@if ($errors->has('maiantainance_cost'))
{{ $errors->first('maiantainance_cost') }}
@endif
Writen Down Value
*
@if ($errors->has('wdv'))
{{ $errors->first('wdv') }}
@endif
Submit
@stop @section('js') @stop