@extends('layouts.admin') @push('title') Group | @endpush @section('content') @push('css') @endpush
@if($edit)
Edit Group
@csrf
@if ($errors->has('parent_group')) {{ $errors->first('parent_group') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('manager')) {{ $errors->first('manager') }} @endif
{{-- --}} {{-- Group List--}} {{-- --}}
@else
Group Add
@csrf
@if ($errors->has('parent_group')) {{ $errors->first('parent_group') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('manager')) {{ $errors->first('manager') }} @endif
{{-- Group List --}}
@endif
@push('alljs') @endpush @endsection