@extends('layouts.master') @section('title') {{ translate('edit branch') }} @endsection @section('content')
{{ translate('edit branch') }}
{!! Form::open(array('url' => url('branch/'.$branch->id.'/update'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',translate('name'),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',$branch->name, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('notes',translate('note'),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('notes',$branch->notes, array('class' => 'form-control', 'placeholder'=>"")) !!}
{!! Form::close() !!}
@endsection