• {{ __('Admin') }}
  • {{ __('Media') }}
  • {{ __('Create') }}
  • Upload

    {!!Form::open(['route' => 'admin.media.store', 'method' => 'post', 'enctype' => 'multipart/form-data'])!!}
    {{Form::label('filename', 'Caption', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('filename', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('filename') ? 'is-invalid' : null])}} @if($errors->has('filename'))

    {{$errors->first('filename')}}

    @endif
    {{Form::label('description', 'Description', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::textarea('description', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('description') ? 'is-invalid' : null])}} @if($errors->has('description'))

    {{$errors->first('description')}}

    @endif
    {{Form::label('path', 'File', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::file('path', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'])}} @if($errors->has('path'))

    {{$errors->first('path')}}

    @endif
    {!!Form::close()!!}