@extends('layouts.app') @section('title', trans('job.delete')) @section('content')

{!! FormField::delete([ 'route'=>['jobs.destroy',$job->id]], trans('app.delete_confirm_button'), ['class'=>'btn btn-danger'], [ 'job_id'=>$job->id, 'project_id'=>$job->project_id, ]) !!}
{{ trans('app.delete_confirm') }} {!! link_to_route('jobs.show', trans('app.cancel'), [$job->id], ['class' => 'btn btn-default']) !!}

@include('jobs.partials.job-show')
@endsection