@extends('layouts.default') @section('content')

{{ trans('labels.materials') }} - {{ trans('labels.task') }}

{{ Form::open(array('url' => 'usedmat/create')) }}
{{ trans('labels.material') }} :
{{ Form::select('used_what', $material_options, Input::old('used_what')) }}
{{ trans('labels.quantity') }} :
{{ Form::text('used_quantity', Input::old('used_quantity')) }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::hidden('used_for',$task_id)}} {{ Form::close() }} @endsection