@extends('layouts.app')
@section('content')
<div class="uk-section">
<div class="uk-container ">
{!! Form::open(['action' => 'ProductController@store']) !!}
<div class="uk-align-center uk-container-small">
{!! Form::text('product_title', 'Product Title', ['class' => 'uk-input uk-margin-bottom']) !!}
{!! Form::text('photo_filenames[]', 'Photo_1.jpg', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_titles[]', 'Photo Title 1', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_descs[]', 'Photo Desc 1', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_filenames[]', 'Photo_2.jpg', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_titles[]', 'Photo Title 2', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_descs[]', 'Photo Desc 2', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_filenames[]', 'Photo_3.jpg', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_titles[]', 'Photo Title 3', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::text('photo_descs[]', 'Photo Desc 3', ['class' => 'uk-input uk-width-1-4 uk-margin-bottom']) !!}
{!! Form::submit('Click Me!', ['class' => 'uk-button uk-button-primary uk-align-right'])!!}
</div>
{!! Form::close() !!}
</div>
</div>
@endsection