@extends('layouts.app' ) @section('title') Add New Class @stop @section('breadcrumb')
Home
@permission('view-chart-of-account')
Account Classes
@endpermission
Add Class
@stop @section('content')
Add New Class
Add Information
{{csrf_field()}}
Name
*
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Status
*
@if(old('status')) @if(old('status') == true)
Active
InActive
@else
Active
InActive
@endif @else
Active
InActive
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
Save
@stop