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

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

{!! FormField::text('name', ['label' => trans('job.name')]) !!}
{!! FormField::price('price', ['label' => trans('job.price'), 'currency' => Option::get('money_sign', 'Rp')]) !!}
{!! FormField::select('worker_id', $workers, ['label' => trans('job.worker'), 'value' => 1]) !!}
{!! FormField::radios('type_id', [1 => 'Project', 'Tambahan'], ['value' => 1, 'label' => trans('job.type'), 'list_style' => 'unstyled']) !!}
{!! FormField::textarea('description', ['label' => trans('job.description')]) !!}
{!! Form::close() !!}
@include('projects.partials.project-show')
@endsection