@extends('layouts.master') @section('content')

{{ ucwords(Lang::get('girls.add')) }}

{{ Form::open(array('action' => array('GirlsController@store'))) }}
{{ ucwords(Lang::get('girls.personal data')) }}
{{ Form::label('public_name', ucwords(Lang::get('girls.public_name'))) }} {{ Form::text('public_name', '', array('placeholder' => Lang::get('girls.placeholder_public_name'))) }}
{{ Form::label('firstname', ucwords(Lang::get('girls.firstname'))) }} {{ Form::text('firstname') }}
{{ Form::label('lastname', ucwords(Lang::get('girls.lastname'))) }} {{ Form::text('lastname') }}
{{ Form::label('email', ucwords(Lang::get('girls.email'))) }} {{ Form::text('email') }}
{{ Form::label('mobile', ucwords(Lang::get('girls.mobile'))) }} {{ Form::text('mobile') }}
{{ Form::label('country', ucwords(Lang::get('girls.country'))) }} {{ Form::select('country',$countries) }}
{{ ucwords(Lang::get('girls.details')) }}
{{ Form::label('weight', ucwords(Lang::get('girls.weight'))) }}
{{ Form::text('weight') }}
Kg
{{ Form::label('height', ucwords(Lang::get('girls.height'))) }}
{{ Form::text('height') }}
cm
{{ Form::label('age', ucwords(Lang::get('girls.age'))) }} {{ Form::text('age') }}
{{ Form::label('haircolor', ucwords(Lang::get('girls.haircolor'))) }} {{ Form::select('haircolor', array('Blond', 'Braun', 'Rot', 'Schwarz')) }} {{ Form::label('clothingsize', ucwords(Lang::get('girls.clothingsize'))) }} {{ Form::select('clothingsize',array('32'=>'32','34'=>'34','36'=>'36','38'=>'38','40'=>'40','42'=>'42','44'=>'44')) }} {{ Form::label('shoesize', ucwords(Lang::get('girls.shoesize'))) }} {{ Form::select('shoesize', array('34'=>'34','35'=>'35','36'=>'36','37'=>'37','38'=>'38','39'=>'39','40'=>'40','41'=>'41','42'=>'42','43'=>'43','44'=>'44')) }}
{{ Form::label('eyecolor', ucwords(Lang::get('girls.eyecolor'))) }} {{ Form::select('eyecolor', array('Blau'=>'Blau', 'Grün'=>'Grün', 'Braun'=>'Braun', 'Grau'=>'Grau')) }} {{ Form::label('brasize', ucwords(Lang::get('girls.brasize'))) }} {{ Form::text('brasize') }} {{ Form::label('pussy', ucwords(Lang::get('girls.pussy'))) }} {{ Form::select('pussy', array('Rasiert'=>'Rasiert', 'Teilrasiert'=>'Teilrasiert', 'Natur'=>'Natur')) }}
{{ ucwords(Lang::get('girls.services')) }}
    @foreach( $services as $service )
  • {{ Form::checkbox('services[]', $service->id, '',array('id'=>$service->id)) }} {{ Form::label($service->id, ucwords($service->service_name)) }}
  • @endforeach
{{ ucwords(Lang::get('girls.languages')) }}
    @foreach( $languages as $language )
  • {{ Form::checkbox('languages[]', $language->id, '',array('id'=>$language->id)) }} {{ Form::label($language->id, ucwords($language->lang_name)) }}
  • @endforeach
{{ ucwords(Lang::get('girls.description'))}}
{{ Form::label('headline', ucwords(Lang::get('girls.headline'))) }} {{ Form::text('headline', '', array('placeholder' => Lang::get('girls.placeholder_headline'))) }}
{{ Form::label('description', ucwords(Lang::get('girls.description'))) }} {{ Form::textarea('description',null,array('class'=>'ckeditor')) }}
{{ HTML::link(URL::previous(),ucwords(Lang::get('cancel')),array('class'=>'button small secondary left')) }} {{ Form::submit(ucwords(Lang::get('girls.save')), array('class'=>'button small right')) }} {{ Form::close() }}
@stop @section('js') @parent {{ HTML::script('js/vendor/ckeditor/ckeditor.js') }} @stop