@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::textarea('description',['label'=> trans('feature.description')]) !!}
{!! FormField::price('price', ['label'=> trans('feature.price')]) !!}
{!! FormField::select('worker_id', $workers, ['label'=> trans('feature.worker'),'value' => 1]) !!}
{!! Form::close() !!}
@include('projects.partials.project-show')
@endsection