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

New Account

Add 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('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
 
@stop