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

B2B New City

@endsection @section('main-content')

Entry

@if(Session::has('message'))
{{Session('message')}}
@endif {!! Form::open(['url' => '/admin/b2b-cities/add' ]) !!}
{!! Form::label('name','B2B City Name' ) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'B2B City Name', 'id' => 'name']) !!} @if ($errors->has('name')) {!! $errors->first('name') !!} @endif
{!! Form::close() !!}
@endsection