@extends('admin.layouts.master') @section('title', 'Edit Media') @section('content')

{{ $file->filename }}

{!! Form::model( $file, [ 'method' => 'PATCH', 'route' => [ 'ch-admin.media.update', $file->id ] ] ) !!}
{!! Form::label('file_url', 'File URL:') !!} {!! Form::text('file_url', null, ['class' => 'form-control', 'readonly' => 'readonly']) !!}
{!! Form::label('title', 'Title:') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!}
@if ( is_image($file->mime_type) )
{!! Form::label('alt_text', 'Alt Text:') !!} {!! Form::text('media_meta[alt_text]', null, ['class' => 'form-control']) !!}
{{ $file->alt_text }} @endif
{!! Form::close() !!}

File Info

{{ $file->filename }}

{{ $file->mime_type }}

{{ $file->size }}

{{ $file->user->name }}

@endsection