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

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

@include('features.partials.feature-show')
@endsection