@extends('layouts.app') @section('title', trans('feature.create')) @section('content') @include('projects.partials.breadcrumb',['title' => trans('feature.create')])
{!! Form::open(['route'=>['features.store', $project->id]]) !!}

{{ trans('feature.create') }}

{!! FormField::text('name',['label'=> trans('feature.name')]) !!}
{!! FormField::price('price', ['label'=> trans('feature.price')]) !!}
{!! FormField::select('worker_id', $workers, ['label'=> trans('feature.worker'),'value' => 1]) !!}
{!! FormField::radios('type_id', [1 => 'Project','Tambahan'], ['value' => 1,'label'=> trans('feature.type'),'list_style' => 'unstyled']) !!}
{!! FormField::textarea('description',['label'=> trans('feature.description')]) !!}
{!! Form::close() !!}
@include('projects.partials.project-show')
@endsection @section('ext_js') {!! Html::script(url('assets/js/plugins/autoNumeric.min.js')) !!} @endsection @section('script') @endsection