@extends('layouts.app') @section('content-header')

Edit File Type

@endsection @section('content')

{{ !empty($fileType->name) ? ucfirst($fileType->name) : 'File Type' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('file_types.form', ['fileType' => $fileType,])
@endsection