@extends('layouts.app') @section('title','Edit '.ucfirst(config('settings.file_label_singular')).' Type') @section('content')

{{ucfirst(config('settings.file_label_singular'))}} Type

{!! Form::model($fileType, ['route' => ['fileTypes.update', $fileType->id], 'method' => 'patch']) !!} @include('file_types.fields') {!! Form::close() !!}
@endsection