@extends('layouts.app') @section('title') Edit Expense Category @stop @section('breadcrumb')
Home
@permission('view-expense')
Expense Categorires
@endpermission
Edit Category
@stop @section('content')
Edit Category
Update the information
{{csrf_field()}}
Name
*
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Status
*
@if($expenseCategory->status == true)
Active
InActive
@else
Active
InActive
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
Save
@stop