@extends('layouts.app')
@section('title','Show '.ucfirst(config('settings.file_label_singular')).' Type')
@section('content')
{{ucfirst(config('settings.file_label_singular'))}} Type
Back
Edit
{!! Form::open(['route' => ['fileTypes.destroy', $fileType->id], 'method' => 'delete','style'=>'display:inline']) !!}
{!! Form::button(' Delete', [
'type' => 'submit',
'title' => 'Delete',
'class' => 'btn btn-danger',
'onclick' => "return conformDel(this,event)",
]) !!}
{!! Form::close() !!}