• {{ __('Admin') }}
  • {{ __('Area Meetings') }}
  • {{ __('Detail') }}
  • Create Area Meeting

    {!!Form::open(['route' => 'admin.area_meetings.store', 'method' => 'post'])!!}
    {{Form::label('name', 'Name*', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('name', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('name') ? 'is-invalid' : null])}} @if($errors->has('name'))

    {{$errors->first('name')}}

    @endif
    {{Form::label('slug', 'Slug* (all lower case, no spaces, hyphen "-" for spaces. Best practice: use full title as slug)', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('slug', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('slug') ? 'is-invalid' : null])}} @if($errors->has('slug'))

    {{$errors->first('slug')}}

    @endif
    {{Form::label('day', 'Day*', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{ Form::select('day', $daysofweek, null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', $errors->has('day') ? 'is-invalid' : null])}} @if($errors->has('affiliation_type_id'))

    {{$errors->first('affiliation_type_id')}}

    @endif
    {{Form::label('start_at', 'Meeting Time*', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{ Form::time('start_at', Carbon\Carbon::parse(now())->format('H:i'), ['class' => 'form-control text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900'] )}} @if($errors->has('start_at'))

    {{$errors->first('start_at')}}

    @endif
    {{Form::label('address', 'Address* (Street address/Neighborhood, City, State Country (18916 Soledad Canyon Rd, Santa Clarita, CA 91351, USA))', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('address', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('address') ? 'is-invalid' : null])}} @if($errors->has('address'))

    {{$errors->first('address')}}

    @endif
    {{Form::label('location', 'Location* (Building, room etc. e.g. Store Front, Valley Club etc)', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('location', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('location') ? 'is-invalid' : null])}} @if($errors->has('location'))

    {{$errors->first('location')}}

    @endif
    {{Form::label('region', 'City (AKA Region)* (City e.g. Woodland Hills)', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('region', null, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', 'required' => true, $errors->has('region') ? 'is-invalid' : null])}} @if($errors->has('region'))

    {{$errors->first('region')}}

    @endif
    {!!Form::close()!!}