@extends('layouts.main') @section('customcss') @endsection @section('pagecontent')

@lang('sistema.transaction.edit_transaction')

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {!! $error !!}
  • @endforeach
@endif
{{ csrf_field() }} {{ method_field('PUT') }}
@php $client_name = $account->primary_client ? ' - ' . $account->primary_client->full_name : ''; if($account->account_type = 'joint') { $this_clients = $account->clients; if(count($this_clients) > 0) { $client_name_arr = []; foreach($this_clients as $my_client) { $client_name_arr[] = $my_client->full_name; } $client_name = " - " . implode(" / ", $client_name_arr); } } @endphp

@lang('sistema.transaction.open')

@lang('sistema.transaction.close')

@lang('sistema.btn_back')
@endsection @section('customjs') @if (session('type')=='error') @endif @endsection