@extends('layouts.main') @section('content')
{{ Form::label("itemname", "ファンド名" ,["class"=>"control-label btn"]) }} | {{ Form::text("itemname", $request->itemname, ["class"=>"form-control", "id"=>"itemname"]) }} | {{ Form::label("compname", "会社名" ,["class"=>"control-label btn"]) }} | {{ Form::text("compname", $request->compname, ["class"=>"form-control", "id"=>"compname"]) }} | {{ Form::label("pref", "立地都道府県" ,["class"=>"control-label btn"]) }} | {{ Form::select('pref', $data_pref, $request->pref, ['class'=>'form-control', 'style'=>'width:150px', 'id'=>'pref']) }} | ||||
{{ Form::label("assume_share_rate", "利回り" ,["class"=>"control-label btn"]) }} | {{ Form::text("assume_share_rate", $request->assume_share_rate, ["class"=>"form-control", "id"=>"assume_share_rate"]) }} | {{ Form::label("invest_unit_one", "出資単位" ,["class"=>"control-label btn"]) }} | {{ Form::text("invest_unit_one", $request->invest_unit_one, ["class"=>"form-control", "id"=>"invest_unit_one"]) }} | {{ Form::label("invest_unit_total", "出資総額" ,["class"=>"control-label btn"]) }} | {{ Form::text("invest_unit_total", $request->invest_unit_total, ["class"=>"form-control", "id"=>"invest_unit_total"]) }} | {{ Form::label("operation_mode", "運用状態" ,["class"=>"control-label btn"]) }} | {{ Form::checkbox('recruit_before', 1, @in_array( 1, $request->recruit_before), ['id'=> 'recruit_before']) }} {{ Form::label( 'recruit_before', '募集開始前', ["class"=>"control-label"]) }} {{ Form::checkbox('recruit_now', 1, @in_array( 1, $request->recruit_now), ['id'=> 'recruit_now']) }} {{ Form::label( 'recruit_now', '募集中', ["class"=>"control-label"]) }} {{ Form::checkbox('operation_now', 1, @in_array( 1, $request->operation_now), ['id'=> 'operation_now']) }} {{ Form::label( 'operation_now', '運用中', ["class"=>"control-label"]) }} {{ Form::checkbox('end_maturity', 1, @in_array( 1, $request->end_maturity), ['id'=> 'end_maturity']) }} {{ Form::label( 'end_maturity', '満期終了', ["class"=>"control-label"]) }} |