@extends('layouts.app') @section('title') Edit Account @stop @section('breadcrumb') @stop @section('content')

Edit Account

Update Information

{{csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('account_number')) {{ $errors->first('account_number') }} @endif
@if ($errors->has('account_title')) {{ $errors->first('account_title') }} @endif
@if ($errors->has('opening_balance')) {{ $errors->first('opening_balance') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@stop