@extends('layouts.layout') @section('title', 'Create New Currency') @section('content')

@if(Session::has('success'))
Success : {{ Session::get('success') }}
@endif @if(count($errors) > 0) @endif

EDIT Currency

{!! Form::model($currency,['route'=>['currency.update',$currency->id],'method'=>'PUT']) !!}

{!! Form::close() !!}
@endsection