{{ html()->label('Project Code')->class('form-label') }} {{ html()->text('project_code')->class('form-control')->placeholder('Enter Project Code')->required() }}
{{ html()->label('Project Name')->class('form-label') }} {{ html()->text('project_name')->class('form-control')->placeholder('Enter Project Name')->required() }}
{{ html()->label('Project Category')->class('form-label') }} {{ html()->select('project_category_id', $categoryList)->class('form-control')->placeholder('Select Project Category')->required() }}
{{ html()->label('Client')->class('form-label') }} {{ html()->select('client_id', $clientList)->class('form-control')->placeholder('Select Client')->required() }}
{{ html()->label('Team Members')->class('form-label') }} {{ html()->select('members_id', $memberList)->class('form-control')->placeholder('Select Member')->required() }}
{{ html()->label('Summary')->class('form-label') }} {{ html()->textarea('summary')->class('form-control')->placeholder('Enter Summary...') }}
Cancel
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control')->required() }}
Date
{{ html()->label('Start Date')->class('form-label') }} {{ html()->date('start_date')->class('form-control')->placeholder('Choose Start Date') }}
{{ html()->label('End Date')->class('form-label') }} {{ html()->date('end_date')->class('form-control')->placeholder('Choose End Date') }}