@extends('layouts.master') @section('title') {{ __('sentence.Create Invoice') }} @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif
{{ __('sentence.Informations') }}
{{ csrf_field() }}
{{ __('sentence.Invoice Details') }}
@endsection @section('footer') @endsection