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

{{ $title }}

{!! Form::open(['url'=>aurl('investments')]) !!}
{!! Form::label('name', 'Type*')!!} {!! Form::select('type_id', $select, null, ['class'=>'form-control']) !!}
{!! Form::label('name', 'Description*')!!} {!! Form::text('description',old('description'),['class'=>'form-control']) !!}
{!! Form::label('name', 'Montante*')!!} {!! Form::text('amount',old('amount'),['class'=>'form-control']) !!}
{!! Form::submit('Ajoute',['class'=>'btn btn-primary col-md-12']) !!} {!! Form::close() !!}
@endsection