@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

Create Salesman

@endsection @section('main-content')

{!! Form::open([ 'method' => 'post', 'url' => '/admin/presale-salesmans/create']) !!} @csrf
{!! Form::label('Phone Number') !!} {!! Form::text('phone', null, ['class' => 'form-control', 'placeholder' => 'Phone Number 10 digit without first 0']) !!} @if ($errors->has('phone')){!! $errors->first('phone') !!}@endif
{!! Form::label('Password') !!} {!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Enter password']) !!} @if ($errors->has('password')){!! $errors->first('password') !!}@endif
{!! Form::label('Location') !!} {!! Form::select('location_id', $locations, null, ['id' => 'location_id', 'class'=> 'form-control']) !!} @if ($errors->has('location_id')){!! $errors->first('location_id') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection