@extends('admin.template.master') @section('title')

B2B Customer Update

@endsection @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('main-content')
@if(Session::has('messa'))
{{Session('messa')}}
@endif {!! Form::open(['url' => '/admin/b2b-customer-update/'. $b2b->b2b_user_id ]) !!}
{!! Form::label('location_id','Branch affiliation') !!} @if ($errors->has('location_id')) {!! $errors->first('location_id') !!} @endif
{!! Form::label('remarks','Remarks') !!} {!! Form::text('remarks', $b2b->remarks, ['class' => 'form-control', 'placeholder' => 'Remarks', 'id' => 'remarks']) !!}
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection