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