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

{!! delete_button(['route'=>['projects.destroy',$project->id]], trans('app.delete_confirm_button'), ['class'=>'btn btn-danger'], ['project_id'=>$project->id]) !!}
{{ trans('app.delete_confirm') }} {!! link_to_route('projects.show', trans('app.cancel'), [$project->id], ['class' => 'btn btn-default']) !!}

@include('projects.partials.project-show')
@endsection