@extends('layouts.acc_layout') @section('title', ' | Transaction Head Settings' ) @section('stylesheets') @endsection @section('content')
New Transaction Head
{!! Form::open(array('route' => ['transactionHeadSettings.update',$foundedHead->id], 'class'=>'form','method'=>'post')) !!}
{!! Form::label('name', 'Name', ['class' => 'control-label']) !!} {!! Form::text('name', $foundedHead->name, ['class' => 'form-control']) !!}

{{ $errors->first('name') }}

{!! Form::label('head_for', 'Head For', ['class' => 'control-label']) !!} {!! Form::select('head_for', $foundedHead->getHeadFor() ,$foundedHead->head_for, ['class' => 'form-control']) !!}

{{ $errors->first('head_for') }}

{!! Form::close() !!}
@endsection @section('footerAssets') @endsection