@extends('layouts.app') @section('title', 'Editar Conta Bancária') @push('styles-custom') @endpush @section('content')
@include('contas_bancarias.partials.form', [ 'action' => route('contas-bancarias.update', $conta->id), // Passando ID corretamente 'method' => 'PUT', 'title' => 'Editar Conta Bancária', 'conta' => $conta, ])
@endsection @push('styles-custom') @endpush @push('scripts-custom') @endpush