@extends('layout.default')
@section('head')
@endsection
@section('content')
@if(Session::has('err'))
{{session('err')}}
@endif
@if(Session::has('success'))
{{session('success')}}
@endif
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@foreach($wallpapers as $wallpaper)
{{ $wallpaper->filename }}
@endforeach
{{ html()->form('POST', route('wallpaper.store'))->acceptsFiles()->open() }}
{{ html()->file('wallpaper') }}
{{ html()->submit('アップロード')->name('upload') }}
{{ html()->form()->close() }}
@endsection