@extends('layouts.app') @section('title', __('assetexchange::lang.open_research')) @section('content') @include('assetexchange::layouts.nav')

@lang('assetexchange::lang.open_research')

{!! Form::open(['url' => action([\Modules\AssetExchange\Http\Controllers\ResearchCaseController::class, 'store']), 'method' => 'post']) !!}
{!! Form::label('listing_id', __('assetexchange::lang.listing')) !!}{!! Form::select('listing_id', $listings, $listing?->id, ['class' => 'form-control select2', 'required']) !!}
{!! Form::label('title', __('assetexchange::lang.title')) !!}{!! Form::text('title', $listing ? 'تحقیق — '.$listing->title : null, ['class' => 'form-control']) !!}
{!! Form::label('lead_researcher_id', __('assetexchange::lang.lead_researcher')) !!}{!! Form::select('lead_researcher_id', $users, null, ['class' => 'form-control select2']) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection