@extends('Frontend.Layouts.modal') @section('title') {{ trans('front.import') }} @stop @section('body') {!! Form::open(['route' => 'map_icons.import', 'method' => 'POST']) !!} {!! Form::hidden('id') !!}
{!!Form::label(null, trans('validation.attributes.map_icon_id').'*:')!!} {!!Form::hidden('map_icon_id')!!}
@foreach($icons->toArray() as $key=>$value)
{!!Form::radio('map_icon_id', $value['id'], null, ['data-width' => $value['width'], 'data-height' => $value['height']])!!}
@endforeach
{!! Form::label('file', trans('validation.attributes.file').'*:') !!} {!! Form::file('file', ['class' => 'form-control']) !!}
example.csv
{!! Form::close() !!} @stop @section('buttons') @stop