Liệu trình
{!! Form::open(array('method' => 'put', 'id'=>'historyUpdateOrrder')) !!}
{!! Form::label('user_id', 'Kỹ thuật viên chính', array('class' => ' required')) !!} {!! Form::select('user_id', $waiters, null, array('class' => 'form-control select2')) !!} {{ $errors->first('user_id', ':message') }}
{!! Form::label('support_id', 'Người hỗ trợ (nếu có)') !!} {!! Form::select('support_id', $waiters, null, array('class' => 'form-control select2','placeholder'=>'Chon KTV')) !!} {{ $errors->first('support_id', ':message') }}
{!! Form::label('support2_id', 'Người hỗ trợ 2 (nếu có)') !!} {!! Form::select('support2_id', $waiters, null, array('class' => 'form-control select2','placeholder'=>'Chon KTV 2')) !!} {{ $errors->first('support2_id', ':message') }}
{!! Form::label('service_id', 'Dịch vụ', array('class' => ' required')) !!} {!! Form::select('service_id', [], null, array('id'=>'service_modal','class' => 'form-control')) !!} {{ $errors->first('service_id', ':message') }}
{!! Form::label('type_delete', 'Loai') !!} {!! Form::select('type_delete', [0 => 'Trừ liệu trình', 1 => 'Đã bảo hành', 2 => 'Đang bảo lưu'], null, array('class' => 'form-control')) !!} {{ $errors->first('user_id', ':message') }}
{!! Form::label('tip_id', 'Thủ thuật (nếu có)') !!} {!! Form::select('tip_id',$tips, null, array('class' => 'form-control select2','placeholder'=>'Chọn thủ thuật')) !!} {{ $errors->first('user_id', ':message') }}
{!! Form::label('description', 'Ghi chú', array('class' => ' required')) !!} {!! Form::textarea('description', null, array('class' => 'form-control', 'rows' => 3)) !!} {{ $errors->first('phone', ':message') }}
{{ Form::close() }}