@extends('Studio::studioDashboard') @section('title','Edit Model Profile') @section('contentDashboard')

@lang('messages.editModel'): {{$model->username}}

@include('Studio::memberMenu', ['modelId' => $model->id, 'activeMenu' => 'registrationInfo'])
{!! Form::open(array('method' => 'POST', 'role' => 'form')) !!}
@include('render_gender_block', array('default' => old('gender', $model->gender)))
@lang('messages.passwordChangeEnterNewPassword')
{{Form::select('country', $countries, old('country', $performer->country_id), array('class'=>'form-control ', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
@lang('messages.modelpersonalinfo')
{{Form::select('sexualPreference', array('lesbian'=>'Lesbian','transsexual'=>'Transsexual','female'=>'Female', 'male'=>'Male', 'couple'=>'Couple','no_comment'=>'No Comment'), old('sexualPreference', $performer->sexualPreference), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::selectRange('age', 18, 100, old('age', $performer->age), ['class'=>'form-control input-md', 'placeholder'=>'@lang('messages.pleaseSelect')'])}}
{{Form::select('ethnicity', array('unknown'=>'Unknown', 'white'=>'White', 'asian'=>'Asian', 'black'=>'Black', 'india'=>'India', 'latin'=>'Latin'), old('ethnicity', $performer->ethnicity), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('eyes', array('blue'=>'Blue', 'brown'=>'Brown', 'green'=>'Green', 'unknown'=>'Unknown'), old('eyes', $performer->eyes), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('hair', array('brown'=>'Brown', 'blonde'=>'Blonde', 'black'=>'Black','red'=>'Red', 'unknown'=>'Unknown'), old('hair', $performer->hair), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('height', $heightList, old('height', $performer->height), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('weight', $heightList, old('weight', $performer->weight), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('category', $categories, old('category', $performer->category_id), array('class'=>'form-control ', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('pubic', array('trimmed'=>'Trimmed', 'shaved'=>'Shaved', 'hairy'=>'Hairy', 'no_comment'=>'No Comment'), old('pubic', $performer->pubic), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}}
{{Form::select('bust', array('large'=>'Large', 'medium'=>'Medium', 'small'=>'Small', 'no_comment'=>'No Comment'), old('bust', $performer->bust), array('class'=>'form-control input-md', 'placeholder' => '@lang('messages.pleaseSelect')'))}} {{$errors->first('bust')}}
{{$errors->first('tags')}}
{{Form::close()}}
@endsection