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

Edit Control Account

Update Information

{{csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('cnic')) {{ $errors->first('cnic') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('rep_name')) {{ $errors->first('rep_name') }} @endif
@if($account->type == \App\ControlAccount::VENDOR)
@endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
 
@stop