@extends('layouts.master') @section('title') {{ trans_choice('general.change',1) }} {{ trans_choice('general.branch',1) }} @endsection @section('content')

{{ trans_choice('general.change',1) }} {{ trans_choice('general.branch',1) }}

{!! Form::open(array('url' => url('branch/change'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('branch_id',trans_choice('general.branch',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::select('branch_id',$branches,null, array('class' => 'form-control select2', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::close() !!}
@endsection