@extends('layouts.app') @section('title', $title) @section('content')

{{ $title }}

{!! Form::open([ 'route' => 'news.post.image', 'method' => 'post', 'enctype' => 'multipart/form-data' ]) !!}
{!! Form::file('file[]', ['accept' => 'image/*', 'multiple', 'required']) !!}
{!! Form::close() !!}
@if (count($images))
@foreach($images as $image)
@endforeach
@endif @endsection