@extends('admin.layouts.main') @section('title') @if($edit) Edit Meeting @else Add Meeting @endif @endsection @section('content')
@include("admin.common.sidebar")
@csrf
@if($edit)

{{ @trans('calendar.edit_meeting') }}

@else

{{ @trans('calendar.add_meeting') }}

@endif
type == 'internal') checked @endif >
type == 'external') checked @endif>

Internal Attendees

@if($edit) @php $intMembers = $meeting->internalMembers->groupBy('department_id'); @endphp @foreach($intMembers as $deptId => $users)
@if($loop->index == 0) add @else close @endif
@endforeach @else
add
@endif

@endsection @push('pageJs') {!! JsValidator::formRequest('App\Http\Requests\Calendar\StoreMeeting', '#storeMeeting') !!} @endpush