@extends('layouts.admin') @section('content')
Edit File or Text
@csrf
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Part name
Department
@if(!is_null($model->text))
{{ $model->text }}
@else
{{ old('text') }}
@endif
@if( !is_null($model->file_part) && !empty($model->file_part))
Download file
@endif
Upload file
Save
@endsection @section('style') @endsection @section('script') @endsection