@extends('layouts.app') @section('title') {{ __('messages.projects') }} @endsection @section('css') @livewireStyles @endsection @section('content') @include('flash::message') {{ __('messages.projects') }} {{ __('messages.project.client') }} {{Form::select('drp_client',$clients,null,['id'=>'filterClient','class'=>'form-control', 'placeholder' => 'All']) }} {{ __('messages.project.new_project') }} @livewire('projects') {{ __('messages.project.edit_assignee') }} × {!! Form::open(['id'=>'editProjectAssign']) !!} {{ Form::label('assign_to', __('messages.task.assign_to').':') }} {{ Form::select('projects[]',$users,null,['class' => 'form-control projectName','id'=>'editProjectUser', 'multiple' => true]) }} {{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary ml-1', 'id' => 'btnSaveAssigneesProject', 'data-loading-text' => " Processing..."]) }} {{ __('messages.common.cancel') }} {{ Form::close() }} @include('projects.modal') @include('projects.add_client_modal') @include('projects.edit_modal') @endsection @section('scripts') @livewireScripts @endsection