@extends('layouts.app') @section('title', trans('feature.edit')) @section('content')

{!! Form::model($feature, ['route'=>['features.update', $feature->id], 'method' => 'patch']) !!}

{{ $feature->name }} {{ trans('feature.edit') }}

{!! 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', ['project' => $feature->project])
@endsection