@extends('layouts.app') @section('content')
Edit Invoice
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($invoice, array('url' => url('/invoice/' . $invoice->id), 'method' => 'PUT', 'class' => 'form-horizontal invoice-form')) !!}
{{ Form::select('currency', $currencies, $invoice->curency , ['class' => 'form-control']) }}
{{ Form::select('customer_id', $customers, $invoice->customer->id , ['class' => 'form-control']) }}
# Description Price
{!! Form::submit('Update', array('class' => 'btn btn-default')) !!}
{!! Form::close() !!}
@endsection