@extends('layouts.app') @section('title', __('lang_v1.calendar')) @section('content')

@lang( 'lang_v1.calendar' )

@if(!empty($users))
{!! Form::label('user_id', __('role.user') . ':') !!} {!! Form::select('user_id', $users, auth()->user()->id, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select')]); !!}
@endif
{!! Form::label('location_id', __('sale.location') . ':') !!} {!! Form::select('location_id', $all_locations, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select')]); !!}
@foreach($event_types as $key => $value)
@endforeach @if(Module::has('Essentials'))
@endif
@endsection @section('javascript') @endsection