@extends('admin.master') @section('content')

Choose the csv file to upload

{{ Form::open(['url' => Request::url(), 'method' => 'post', 'id' => 'form-import-csv', 'files' => true, 'class' => 'smart-form']) }}
@if(isset($_error_))
{{ $_error_ }}
@endif
Browse
{{ Form::close() }}
@if(isset($items))

List of Currencies to update for the Branches

@foreach ($items as $item) @endforeach
Currency Buy Sell
{{ $item['title'] }} {{ $item['buy'] }} {{ $item['sell'] }}
@endif @stop