×
@lang('app.edit') @lang('app.menu.Events')
{!! Form::open(['id'=>'updateEvent','class'=>'ajax-form','method'=>'PUT']) !!}
@lang('modules.events.eventName')
@lang('modules.sticky.colors')
label_color == 'bg-info') selected @endif>Blue
label_color == 'bg-warning') selected @endif>Yellow
label_color == 'bg-purple') selected @endif>Purple
label_color == 'bg-danger') selected @endif>Red
label_color == 'bg-success') selected @endif>Green
label_color == 'bg-inverse') selected @endif>Grey
@lang('modules.events.where')
@lang('app.description')
{{ $event->description }}
@lang('modules.events.startOn')
@lang('modules.events.endOn')
@lang('modules.events.viewAttendees') ({{ count($event->attendee) }})
@foreach($event->attendee as $emp)
{{ ucwords($emp->user->name) }}
@lang('app.remove')
@endforeach
@lang('modules.events.addAttendees')
@lang('modules.events.allEmployees')
@foreach($employees as $emp)
{{ ucwords($emp->name) }} @if($emp->id == $user->id) (YOU) @endif
@endforeach
repeat == 'yes') checked @endif type="checkbox">
@lang('modules.events.repeat')
repeat == 'no') style="display: none" @endif>
@lang('modules.events.repeatEvery')
repeat_type == 'day') selected @endif value="day">Day(s)
repeat_type == 'week') selected @endif value="week">Week(s)
repeat_type == 'month') selected @endif value="month">Month(s)
repeat_type == 'year') selected @endif value="year">Year(s)
@lang('modules.events.cycles')
@lang('modules.events.cyclesToolTip')
{!! Form::close() !!}