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

{{ 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')]) !!}
{!! Form::close() !!}
@endsection