@extends('layouts.dash_pop') @section('content') @if (Session::has('message'))
{!! Session::get('message') !!}
@else @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Ajouter un membre

{{ html()->form('POST', url('allocataire_add_select_membre'))->open() }}
{!! html()->text('nom', null) ->placeholder('Rechercher...') ->attributes(['id'=>'nom_find', 'class' => 'form-control text-uppercase']) !!}
{!! html()->button('Sélectionner')->value('Sélectionner')->type('submit')->attributes(['id'=>'btn_selection','class' => 'btn btn-success']) !!} {!! html()->a(url(''),"Nouveau")->attributes(['id'=>'btn_nouveau','class' => 'btn btn-warning']) !!}
{{ html()->form()->close() }}
@endif @stop @section('scripts0') @include('tiers.membres.scripts_membres') @stop