@extends('admin.index') @section('content')

{{ $title }}

{!! Form::open(['url'=>aurl('investments/'.$investment->id),'method'=>'put' ]) !!}
{!! Form::label('name', 'Type')!!} {!! Form::select('type_id', $select, null,['class'=>'form-control'], ['placeholder' => 'Choisir un type...'],) !!}
{!! Form::label('name', 'Description')!!} {!! Form::text('description',$investment->description,['class'=>'form-control']) !!}
{!! Form::label('name', 'Montante')!!} {!! Form::text('amount',$investment->amount,['class'=>'form-control']) !!}
{!! Form::label('name', 'Quantité')!!} {!! Form::text('quantity',$investment->quantity,['class'=>'form-control']) !!}
{!! Form::submit('Enregistrer',['class'=>'btn btn-primary col-md-12']) !!} {!! Form::close() !!}
@endsection